home · contact · privacy
Update Firefox version.
[config] / bin / simplemail_out.sh
1 #!/bin/sh
2 #
3 # This mails to plom@plomlompom.com the message in the file named by the first
4 # parameter, decoded with the first line as subject and everything below the
5 # second line as the message body.
6
7 subject=`head -1 $1`
8 body=`tail -n +3 $1`
9 echo "$body" | mutt -s "$subject" plom@plomlompom.com