#
# Unzip mail selections coming from DOS editing session.
#

if [ $# -ne 1 ]; then
	echo Please provide the name of the zip file on the command line.
	exit 1
fi

if [ -f $1 ]; then
	echo Unzipping and converting to Unix format.
	unzip -ajo $1
else
	echo File $1 does not exist.
	exit 1
fi

echo Script can\'t predict the names of individual files so copy them manually.

echo Done.
