home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DTP Toolbox
/
DTPToolbox.iso
/
utilities
/
postscript
/
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-01-22
|
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