home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Magazine 2002 February
/
INTERNET88.ISO
/
pc
/
software
/
windows
/
bits
/
pdf995
/
data1.cab
/
Program_Executable_Files
/
res
/
ps2ps
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-12-08
|
383 b
|
21 lines
#!/bin/sh
# $RCSfile: ps2ps,v $ $Revision: 1.2.2.1 $
# "Distill" PostScript.
OPTIONS="-dSAFER"
while true
do
case "$1" in
-*) OPTIONS="$OPTIONS $1" ;;
*) break ;;
esac
shift
done
if [ $# -ne 2 ]; then
echo "Usage: `basename $0` ...switches... input.ps output.ps" 1>&2
exit 1
fi
exec gs -q -sDEVICE=pswrite -sOutputFile=$2 -dNOPAUSE -dBATCH $OPTIONS $1