home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo.
- echo.
- echo This program will copy the manual to your printer.
- echo.
- echo The manual is formatted for 60 lines per page
- echo with a left margin of 5 spaces.
- echo.
- echo A single copy command is used: Copy *.DOC PRN
- echo Any files with the "DOC" filename extension will be printed.
- echo.
- echo If you don't want that to happen then stop this program now
- echo and use the copy command at the DOS prompt to print just the
- echo file you want.
- echo.
- echo.
- echo Hit Cntrl-Break or Cntrl-C NOW if you wish to stop.
- echo.
- echo Otherwise, make sure the printer is on, paper is loaded and
- pause
- echo.
- copy *.doc prn
- echo.
-
-