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/hyreach/doc/hyreachm/bprint.bat,v 1.1 2001/10/30 23:02:17 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.00\bin\gswin32 -q -sDEVICE=ljet4 -dNOPAUSE hy_brev.ps -c quit
|
19 |
rem
|
20 |
rem $Log: bprint.bat,v $
|
21 |
rem Revision 1.1 2001/10/30 23:02:17 dtashley
|
22 |
rem Initial checkin.
|
23 |
rem
|
24 |
rem End of BPRINT.BAT
|