home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World of Computer Software
/
World_Of_Computer_Software-02-386-Vol-2of3.iso
/
c
/
cshw860a.zip
/
README.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-02-03
|
891b
|
25 lines
Echo Off
Cls
Echo ╔═════════════════════════════════════════════════════╗
Echo ║ README: print all CompuShow documentation (on LPT1) ║
Echo ╠═════════════════════════════════════════════════════╣
Echo ║ To send the documentation to a different printer, ║
Echo ║ CANCEL now and do: README LPT2 ║
Echo ║ or README LPT3 ║
Echo ║ or README COM1 ║
Echo ║ or README COM2 ║
Echo ╟─────────────────────────────────────────────────────╢
Echo ║ To CANCEL, hold down the Ctrl key and type "C" ║
Echo ║ Otherwise, press any other key to print. ║
Echo ╚═════════════════════════════════════════════════════╝
Echo On
Pause ( Ctrl-C to cancel )
If [%1]==[] GoTo P1
GoTo P2
:P1
Copy *.Doc Lpt1
GoTo P3
:P2
Copy *.Doc %1
:P3
REM done.