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