5 kx #!/bin/sh
5 kx
5 kx echo -n "Insert source disk in first floppy drive, then hit enter"
5 kx read ans;
5 kx MCOOKIE=`mcookie`
5 kx dd if=/dev/fd0 of=/tmp/dcopy.$MCOOKIE
5 kx echo -n "Remove source disk and insert destination disk, then hit enter"
5 kx read ans;
5 kx dd of=/dev/fd0 if=/tmp/dcopy.$MCOOKIE
5 kx /bin/rm -f /tmp/dcopy.$MCOOKIE