home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / v / vsnbl220.zip / PRINTMAN.BAT < prev    next >
DOS Batch File  |  1991-02-14  |  1KB  |  36 lines

  1. @ECHO OFF
  2. ECHO  
  3. ECHO          Print Tutorial and Reference Manual for Vanilla SNOBOL4
  4. ECHO  
  5. ECHO  The manual is approximately 150 pages long.
  6. ECHO  
  7. ECHO  Your printer should contain 8-1/2 x 11" paper, and be set to print
  8. ECHO  in 10 pitch (Courier) type, six lines per inch.
  9. ECHO  
  10. ECHO  Position the paper so that the top-of-form perforation is aligned
  11. ECHO  with the print head.
  12. ECHO  
  13. PAUSE
  14. ECHO  
  15. ECHO  Press Control-C to terminate printing . . .
  16. IF EXIST PM.EXE GOTO LOCAL
  17. IF NOT EXIST A:PM.EXE GOTO FAIL
  18. A:PM -P >NUL
  19. GOTO JOIN
  20. :LOCAL
  21. PM -P >NUL
  22. :JOIN
  23. IF ERRORLEVEL 1 GOTO FAIL
  24. ECHO  
  25. GOTO DONE
  26. :FAIL
  27. ECHO        Manual printing Failed.  Either the PM.EXE file is corrupted,
  28. ECHO        or the Vanilla SNOBOL4 diskette is not in drive A:
  29. ECHO  
  30. ECHO        Replacement Vanilla SNOBOL4 diskettes may be obtained by
  31. ECHO        sending $10 to:   Catspaw, Inc.
  32. ECHO                          P.O. Box 1123
  33. ECHO                          Salida, CO 81201
  34. :DONE
  35. ECHO ON
  36.