summaryrefslogtreecommitdiff
path: root/Master/xemtex/gslib/ps2ps.cmd
diff options
context:
space:
mode:
authorStaszek Wawrykiewicz <staw@gust.org.pl>2006-12-18 03:20:19 +0000
committerStaszek Wawrykiewicz <staw@gust.org.pl>2006-12-18 03:20:19 +0000
commit34c11d2616bb32772199abf210ae88d99665a824 (patch)
treeb95fbfb76fcefd0ab1ca96dc631e2657a894ad6d /Master/xemtex/gslib/ps2ps.cmd
parentb0ccdf9e931213c59344f3c097608e04721149b1 (diff)
xemtex deleted
git-svn-id: svn://tug.org/texlive/trunk@2777 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/xemtex/gslib/ps2ps.cmd')
-rwxr-xr-xMaster/xemtex/gslib/ps2ps.cmd36
1 files changed, 0 insertions, 36 deletions
diff --git a/Master/xemtex/gslib/ps2ps.cmd b/Master/xemtex/gslib/ps2ps.cmd
deleted file mode 100755
index 9a556fdff14..00000000000
--- a/Master/xemtex/gslib/ps2ps.cmd
+++ /dev/null
@@ -1,36 +0,0 @@
-/* $Id: ps2ps.cmd,v 1.1 2000/07/05 16:21:13 lpd Exp $ */
-/*
- * This file is maintained by a user: if you have any questions about it,
- * please contact Mark Hale (mark.hale@physics.org).
- */
-
-/* "Distill" PostScript. */
-
-parse arg params
-
-gs='@gsos2'
-
-if params='' then call usage
-
-options='-dNOPAUSE -dBATCH'
-
-/* extract options from command line */
-i=1
-param=word(params,i)
-do while substr(param,1,1)='-'
- options=options param
- i=i+1
- param=word(params,i)
-end
-
-infile=param
-if infile='' then call usage
-outfile=word(params,i+1)
-if outfile='' then call usage
-
-gs '-q -sDEVICE=pswrite -sOutputFile='outfile options infile
-exit
-
-usage:
-say 'Usage: ps2ps ...switches... input.ps output.ps'
-exit