summaryrefslogtreecommitdiff
path: root/Master/xemtex/gslib/pdfopt
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/pdfopt
parentb0ccdf9e931213c59344f3c097608e04721149b1 (diff)
xemtex deleted
git-svn-id: svn://tug.org/texlive/trunk@2777 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/xemtex/gslib/pdfopt')
-rw-r--r--Master/xemtex/gslib/pdfopt20
1 files changed, 0 insertions, 20 deletions
diff --git a/Master/xemtex/gslib/pdfopt b/Master/xemtex/gslib/pdfopt
deleted file mode 100644
index 0c2413bd7ef..00000000000
--- a/Master/xemtex/gslib/pdfopt
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-# $Id: pdfopt,v 1.4 2001/07/23 06:57:27 lpd Exp $
-# Convert PDF to "optimized" form.
-
-OPTIONS="-dSAFER -dDELAYSAFER"
-while true
-do
- case "$1" in
- -*) OPTIONS="$OPTIONS $1" ;;
- *) break ;;
- esac
- shift
-done
-
-if [ $# -ne 2 ]; then
- echo "Usage: `basename $0` input.pdf output.pdf" 1>&2
- exit 1
-fi
-
-exec gs -q -dNODISPLAY $OPTIONS -- pdfopt.ps "$1" "$2"