#! /bin/sh 
if test $3
then
	name=$1
	subj=$2
	shift; shift
	tar cfb - 20 $* | compress | btoa | mail -s "$subj" $name
else
	echo 'Usage: tarmail who "subject" files'
fi
