home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / BATCH / SASK135.ZIP / GO.BAT < prev    next >
Encoding:
DOS Batch File  |  1992-04-26  |  318 b   |  13 lines

  1. echo off
  2. sask "Would you like to read the FILES.TXT file (Y/N)? " yn
  3. if ERRORLEVEL = 99 goto ERROR
  4. if ERRORLEVEL = 2  goto OUT
  5. type FILES.TXT
  6. goto OUT
  7. :Error
  8. echo You pressed Ctrl-C or Ctrl-Break or an internal error occurred
  9. :Out
  10. echo Please be sure to read the documentation, and run DEMO.
  11. pause
  12. echo on
  13.