home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / vrac / mcook137.zip / PRINTDOC.BAT < prev    next >
DOS Batch File  |  1994-08-30  |  933b  |  27 lines

  1. @echo off
  2. cls
  3. echo 
  4. echo 
  5. echo This will print the README.1ST (3 pages), RECIPES.DOC (2 pages), 
  6. echo MCFORMAT.DOC (2 pages) and MCOOK.MAN (19 pages) document files.
  7. echo 
  8. echo If you want to print the MCOOK.HLP file for use as a handy command reference
  9. echo while you are working in MicroCook, type: COPY MCOOK.HLP PRN
  10. echo at the DOS prompt from the directory where the MicroCook files are.
  11. echo 
  12. echo If you are printing with a continues feed printer (Dot-Matrix),
  13. echo forward the paper so the page perforation is about 1 inch above the print head.
  14. echo 
  15. echo Press any key to start printing, or CTRL-C to Cancel.
  16. pause>nul
  17. echo Printing README.1ST . . . . .
  18. copy readme.1st prn >nul 
  19. echo Printing RECIPES.DOC. . . . . .
  20. copy recipes.doc prn >nul
  21. echo Printing MCFORMAT.DOC . . . . . .
  22. copy mcformat.doc prn >nul
  23. echo Printing MCOOK.MAN  . . . . . . . .
  24. copy mcook.man prn >nul
  25. echo 
  26. echo DONE!
  27.