home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / UTILS / HDUTL / BIGBURST.DOC < prev    next >
Text File  |  2000-06-30  |  2KB  |  39 lines

  1.                   BIGBURST.COM
  2.             (BIG file BackUp/ReSTore)
  3.  
  4. Copyright 1982, Gary Young, PO Box 3218, North Hollywood, CA 91609
  5. Permission granted to copy for non-commercial and personal use.
  6.  
  7.     The purpose of this program is to backup and restore files from
  8. a hard disk to floppy disks where the file is too big to fit on one
  9. floppy.  The program works by copying the big file to multiple files
  10. where each file has a sequence number for the file type.  The last
  11. record of the last file has an indicator that there are no more files
  12. to load.
  13.     To backup a large file, enter
  14.          A>BIGBURST TESTFILE.ASM/B
  15. Where TESTFILE.ASM is the large file on the hard disk and the "/B"
  16. tells the program that this is a BACKUP operation.  The program
  17. will make sure the file exists on the hard disk, and as you to
  18. mount a floppy.  It will name the file on floppy 1 as TESTFILE.001,
  19. file on floppy 2 as TESTFILE.002, etc until the entire file is copied.
  20.     To restore the large file, enter
  21.          A>BIGBURST TESTFILE.ASM/R
  22. Where TESTFILE.ASM is the large file on the hard disk and the "/R"
  23. tells the program that this is a RESTORE operation.  The program
  24. will then tell you to mount the diskette containing TESTFILE.001.
  25. If you enter the wrong diskette, it will tell you to mount the
  26. right one.  The pogram creates TESTFILE.$$$ until the entire
  27. process is complete.  If TESTFILE.ASM already exists on the hard
  28. disk, it will be renamed TESTFILE.BAK and any other copies of
  29. TESTFILE.BAK will be deleted.  When the restore is successful,
  30. it will rename TESTFILE.$$$ as TESTFILE.ASM, but you will still
  31. have the original file as a backup if neccessary.
  32.     The only program modification required is to set the floppy disk
  33. drive and reassemble.  It is currently set for drive D: as indicated
  34. in the line 'FLOPPY  EQU 4'.  If your floppy is on F: set that to 5,
  35. G: = 6, ...A:=1, B:=2, C:=3 etc.  The program uses all of available
  36. memory as the copy buffer.  For diagnostic purposes, the program prints
  37. out the record number just copied after copying each buffer.  This
  38. can be removed be deleting all references to DEBUG.
  39.