mirror of
git://slackware.nl/current.git
synced 2024-12-30 10:24:23 +01:00
10 lines
295 B
Text
10 lines
295 B
Text
|
#!/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
|