projects
/
mmh
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added -clobber switch to mhstore(1) [Bug #11160].
[mmh]
/
docs
/
historical
/
mh-6.8.5
/
miscellany
/
compress-4.0
/
tarmail
1
if test $# -lt 3; then
2
echo "Usage: tarmail mailpath \"subject-string\" directory-or-file(s)"
3
exit
4
else
5
mailpath=$1
6
echo "mailpath = $mailpath"
7
shift
8
subject="$1"
9
echo "subject-string = $subject"
10
shift
11
echo files = $*
12
tar cvf - $* | compress | btoa | mail -s "$subject" $mailpath
13
fi