1 |
echo off
|
2 |
rem Line above suppresses echoing immediately, so as not to fill up the console window.
|
3 |
rem
|
4 |
rem $Header: /cvsroot/esrg/sfesrg/esrgpcpj/doc/engman01/bprint.bat,v 1.3 2002/06/25 02:44:15 dtashley Exp $
|
5 |
rem
|
6 |
rem This batch file uses Ghostscript to print to the default Windows printer (which
|
7 |
rem for Dave Ashley is the LaserJet 6 in 2326). GhostScript 7.00 must be installed
|
8 |
rem to use this batch file verbatim (GhostScript is available for free off the Web).
|
9 |
rem
|
10 |
rem Only "B" sides are printed by this batch file.
|
11 |
rem
|
12 |
rem To use this batch file, first use the MAKEALL.BAT
|
13 |
rem batch file to generate the postscript files, then use this file
|
14 |
rem batch file to print the B sides in reverse order, then re-insert
|
15 |
rem the paper in the manual feed tray and use the APRINT.BAT batch file
|
16 |
rem to print the A sides.
|
17 |
rem
|
18 |
c:\gs\gs7.04\bin\gswin32 -q -sDEVICE=ljet4 -dNOPAUSE em_brev.ps -c quit
|
19 |
rem
|
20 |
rem $Log: bprint.bat,v $
|
21 |
rem Revision 1.3 2002/06/25 02:44:15 dtashley
|
22 |
rem Edits.
|
23 |
rem
|
24 |
rem Revision 1.2 2002/06/24 08:18:30 dtashley
|
25 |
rem Minor spacing change in log section of file.
|
26 |
rem
|
27 |
rem Revision 1.1 2002/06/24 08:17:05 dtashley
|
28 |
rem Initial checkin.
|
29 |
rem
|
30 |
rem End of BPRINT.BAT
|