home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / bin / ps2pdf13 < prev    next >
Encoding:
Text File  |  2012-12-27  |  260 b   |  9 lines

  1. #!/bin/sh
  2. # $Id: ps2pdf13 8107 2007-07-05 19:04:29Z till $
  3. # Convert PostScript to PDF 1.3 (Acrobat 4-and-later compatible).
  4. ps2pdfwr="`dirname $0`/ps2pdfwr"
  5. if test ! -x "$ps2pdfwr"; then
  6.     ps2pdfwr="ps2pdfwr"
  7. fi
  8. exec "$ps2pdfwr" -dCompatibilityLevel=1.3 "$@"
  9.