home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 December
/
simtel1292_SIMTEL_1292_Walnut_Creek.iso
/
msdos
/
graphics
/
mm30.arc
/
PRINTDOC.BAT
< prev
Wrap
DOS Batch File
|
1989-05-30
|
527b
|
18 lines
ECHO OFF
CLS
ECHO This batch file will print the Mandelbrot Magic documentation
ECHO file MM.DOC to printer port PRN:
ECHO Please check that the printer is on !
ECHO Please check that you have enough paper to print
ECHO the entire manual (about 40 pages).
ECHO Press any key to begin (Ctrl-Break to exit)....
PAUSE
IF NOT EXIST MM.DOC GOTO :NOTFOUND
ECHO Now printing MM.DOC...
COPY MM.DOC PRN:
ECHO MM.DOC printed...
GOTO :END
:NOTFOUND
ECHO The file MM.DOC was not found. Please check your disk....
:END