home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / LA / LA001.ZIP / FLOPPY.BAT < prev    next >
DOS Batch File  |  1986-11-13  |  2KB  |  55 lines

  1. echo off
  2. if %1X == X  goto error
  3. if %2X == X  goto error
  4. if %1 == %2  goto error
  5. echo -
  6. echo This batch file will automatically extract CHASM's files.
  7. echo You should have three formatted floppy disks ready, labeled as follows:
  8. echo -
  9. echo     CHASM Work Disk
  10. echo     CHASM Documentation
  11. echo     CHASM Sample Source Files
  12. echo -
  13. echo Put the disk labeled CHASM Work disk in drive %2, then strike any key.
  14. echo (You can abort at this time by hitting Ctrl-Break.)
  15. echo -
  16. pause
  17. arce %1chasm chasm.com %2
  18. arce %1chasm chasm.cfg %2
  19. arce %1chasm example.asm %2
  20. echo -
  21. echo Put the disk labeled CHASM Documentation in drive %2
  22. pause
  23. arce %1chasm chasm.doc %2
  24. arce %1chasm freeware.doc %2
  25. echo -
  26. echo Put the disk labeled CHASM Sample Source Files in drive %2
  27. pause
  28. arce %1chasm *.asm %2
  29. arce %1chasm lc.doc %2
  30. arce %1chasm wc.doc %2
  31. arce %1chasm dup.doc %2
  32. arce %1chasm detab.doc %2
  33. arce %1chasm dsize.doc %2
  34. arce %1chasm chmod.doc %2
  35. arce %1chasm label.doc %2
  36. arce %1chasm encrypt.doc %2
  37. arce %1chasm primer.doc %2
  38. echo -
  39. echo CHASM has been extracted.
  40. echo You can print the user's manual by inserting your Documentation Disk
  41. echo and typing the following command:
  42. echo -
  43. echo     COPY CHASM.DOC LPT1:
  44. goto exit
  45. :error
  46. echo This batch file "un-archives" CHASM.
  47. echo -
  48. echo The proper syntax is:
  49. echo -
  50. echo    FLOPPY X: Y:
  51. echo -
  52. echo    X and Y should be drive letters, for two different drives.
  53. echo    Have your original CHASM disk in the drive specified by X:
  54. echo    and a formatted disk labeled "CHASM Work Disk" in drive Y:
  55. :exit