#!/bin/sh
#
#  toMail file...
#
# Convert  the files to jc's Mail package's format via the Munpack command.
# Out of paranoia, the files are left intact; you might want to rm them if
# this script is successful.

for f
do	echo File: $f
	Munpack <$f
done
