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:
Text File  |  1996-03-09  |  196 b   |  10 lines

  1. #!/bin/sh
  2. # Convert PDF to PostScript.
  3.  
  4. if [ $# -lt 1 -o $# -gt 2 ]; then
  5.     echo "Usage: `basename $0` input.pdf output.ps" 1>&2
  6.     exit 1
  7. fi
  8.  
  9. exec gs -q -dNODISPLAY -sPSFile=$2 -dNOPAUSE $1 -c quit
  10.