home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BUG 1
/
BUGCD1996_0708.ISO
/
pc
/
util
/
minilin
/
minilin.exe
/
USR
/
BIN
/
DISKCOPY
< prev
next >
Wrap
Text File
|
1994-05-19
|
256b
|
9 lines
#!/bin/sh
echo -n "Insert source disk in first floppy drive, then hit enter"
read ans;
dd if=/dev/fd0 of=/tmp/dcopy$$
echo -n "Remove source disk and insert destination disk, then hit enter"
read ans;
dd of=/dev/fd0 if=/tmp/dcopy$$
/bin/rm -f /tmp/dcopy$$