if [ $# -lt 1 ] 
then
   echo "ERROR: no files specified on command line "
   exit 1
fi

echo "Generating compressed encoded tar file:  utarfile.Z"
tar cvf - $* | compress | uuencode  /dev/stdout  > utarfile.Z
