summaryrefslogtreecommitdiff
path: root/lib/ps2ascii.cmd
blob: 142d377b4cc842b3c6a374eb072420416fa5d2c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * This file is maintained by a user: if you have any questions about it,
 * please contact Mark Hale (mark.hale@physics.org).
 */

@echo off
if '%1'=='' goto a0
if '%2'=='' goto a1
gsos2 -q -dSAFER -sDEVICE=txtwrite -o %2 %1
goto x
:a0
gsos2 -q -dSAFER -sDEVICE=txtwrite -o - -
goto x
:a1
gsos2 -q -dSAFER -sDEVICE=txtwrite -o - %1
goto x
:x