.K ""
echo "This script will unpack the following lharc archives:"
echo ""
echo "  FlipDisk1.LZH	=>	FlipDisk1:"
echo "  FlipDisk2.LZH	=>	FlipDisk2:"
echo ""

ask "Do you have two blank disks ready?"
if not WARN
	echo "Try again when you do ..."
	echo "All Done.  Click close gadget to get rid of window."
	endcli
endif

ask "Is floppy drive df1: ready with the first blank?"
if not WARN
	echo "You will need to do the unpacking yourself."
	echo "All Done.  Click close gadget to get rid of window."
	endcli
endif

echo "Formatting and unpacking disk."

sys:system/format drive df1: name FlipDisk1 noicons
:c/lharc -x -a -m x FlipDisk1.LZH  FlipDisk1:
echo "Done with the first disk."
echo ""
ask "Is floppy drive df1: ready with the second blank?"
if not WARN
	echo "You will need to unpack the second disk yourself."
	echo "All Done.  Click close gadget to get rid of window."
	endcli
endif

echo "Formatting and unpacking disk."

sys:system/format drive df1: name FlipDisk2 noicons
:c/lharc -x -a -m x FlipDisk2.LZH  FlipDisk2:
echo "Done with the second disk."
echo ""
echo "All Done.  Click close gadget to get rid of window."
endcli
