home *** CD-ROM | disk | FTP | other *** search
/ BUG 1 / BUGCD1996_0708.ISO / pc / util / minilin / minilin.exe / USR / BIN / DISKCOPY < prev    next >
Text File  |  1994-05-19  |  256b  |  9 lines

  1. #!/bin/sh
  2. echo -n "Insert source disk in first floppy drive, then hit enter"
  3. read ans;
  4. dd if=/dev/fd0 of=/tmp/dcopy$$
  5. echo -n "Remove source disk and insert destination disk, then hit enter"
  6. read ans;
  7. dd of=/dev/fd0 if=/tmp/dcopy$$
  8. /bin/rm -f /tmp/dcopy$$
  9.