home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / bin / ps2pdf < prev    next >
Encoding:
Text File  |  2005-11-16  |  327 b   |  12 lines

  1. #!/bin/sh
  2. # $Id: ps2pdf,v 1.3 2002/02/21 21:49:28 giles Exp $
  3. # Convert PostScript to PDF.
  4. ps2pdfwr="`dirname $0`/ps2pdfwr"
  5. if test ! -x "$ps2pdfwr"; then
  6.     ps2pdfwr=ps2pdfwr
  7. fi
  8.  
  9. # Currently, we produce PDF 1.2 by default, but this is not guaranteed
  10. # not to change in the future.
  11. exec "$ps2pdfwr" -dCompatibilityLevel=1.2 "$@"
  12.