summaryrefslogtreecommitdiffstats
path: root/source/a/bin/scripts/diskcopy
blob: 9f3cc586fab9367c50c054b566c9a50cee74101f (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
echo -n "Insert source disk in first floppy drive, then hit enter"
read ans;
MCOOKIE=`mcookie`
dd if=/dev/fd0 of=/tmp/dcopy.$MCOOKIE
echo -n "Remove source disk and insert destination disk, then hit enter"
read ans;
dd of=/dev/fd0 if=/tmp/dcopy.$MCOOKIE
/bin/rm -f /tmp/dcopy.$MCOOKIE