#!/bin/sh
#ifdef __USAGE
#%C    - make a QNX terminal diskette
#
#%C    [driv]
#Where:
#    drive      is the device the terminal emulator is to be written on.
#               (default is /dev/fd0)
#endif

drive=/dev/fd0

if test $# -ne 0
then
	drive=$1
fi

read bleah?"Place formatted diskette in drive $drive and hit <Enter>"
echo Melting image onto diskette. Please wait...
melt <termem.F >$drive
echo Finished!
exit 0



