home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD1.iso
/
GFX
/
Converter
/
PTC-AEAO.LZX
/
AddOn.lha
/
POST
/
GhostScript
/
batch
/
pdf2ps
< 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
|
1996-03-09
|
196 b
|
10 lines
#!/bin/sh
# Convert PDF to PostScript.
if [ $# -lt 1 -o $# -gt 2 ]; then
echo "Usage: `basename $0` input.pdf output.ps" 1>&2
exit 1
fi
exec gs -q -dNODISPLAY -sPSFile=$2 -dNOPAUSE $1 -c quit