#!/bin/sh
# vcz <reference:filename> ...
# Binary difference from reference using vczip plus any extra arguments
function encode { vczip "$@"; }
function decode { vczip -u "$@"; }
cmd="$1"
dict="$2"
shift 2
$cmd -D"$dict" "$@"
