ps2ascii.bat 437 B

123456789101112131415
  1. @echo off
  2. @rem $Id: ps2ascii.bat,v 1.6 2002/02/21 21:49:28 giles Exp $
  3. call gssetgs.bat
  4. if '%1'=='' goto a0
  5. if '%2'=='' goto a1
  6. %GSC% -q -dNODISPLAY -dSAFER -dDELAYBIND -dWRITESYSTEMDICT -dSIMPLE ps2ascii.ps %1 -c quit >%2
  7. goto x
  8. :a0
  9. %GSC% -q -dNODISPLAY -dSAFER -dDELAYBIND -dWRITESYSTEMDICT -dSIMPLE ps2ascii.ps - -c quit
  10. goto x
  11. :a1
  12. %GSC% -q -dNODISPLAY -dSAFER -dDELAYBIND -dWRITESYSTEMDICT -dSIMPLE ps2ascii.ps %1 -c quit
  13. goto x
  14. :x