#!/bin/sh
#
#
#
#############


if [ $# = 0 ]
then
	exit 1
fi

mount| grep msdos > /dev/null 2>&1

if [ $? = 1 ]
then
	quest -msg_t 0 -msg "Is you disk mounted ?" -cno -hno -ostr "Close"\
		 -goodie "psound $GREAT_SOUND_DIR/Oops.au &"\
		 -title "`basename $0` : Mount Error"
	exit 1
fi
#echo "Copy $1 to /disk"
cp $1 /disk 



