#! /bin/sh # Invoke compress, adding silly 2.11-compatible header. cmd=cunbatch prg=compress for dummy do case "$1" in -cmd) cmd="$2" ; shift ;; -prg) prg="$2" ; shift ;; *) break ;; esac shift done echo "#! ${cmd}" exec ${prg} $*