tput clear
echo "Insert the XFER diskette in drive 0 (the top drive) and hit return. \c"
read x

s=
distcode=
users=

while [ -z "$s" ]
do
	echo "
What are the last four digets of the serial number? \c"
	read s
done

while [ -z "$users" ]
do
	echo "
How many users? ( 2,8,16,32,64 ) \c"
	read users
done

echo "
What is the Distributors code? \c"
read distcode
if [ -z "$distcode" ]
then
	distcode=VC
fi
tput clear
serial.v5.2 -s $s -u $users -d $distcode -f /dev/f0
