:
echo "copy - copies and read checks any RX50 floppies"
while :
do
	echo "Insert master in drive 0 (top), and blank in drive 1 (bottom)."
	echo "Hit return when ready ...\c"
	read A
	echo "Copying ..."
	dd</dev/f0>/dev/f1 bs=10b count=79
	echo "Checking ..."
	dd if=/dev/f1 of=/dev/null bs=10b count=79
	echo "Copy another? (y or n)"
	read A
	case $A in
		[nN]*) exit ;;
	esac
done
