You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
257 B

1 month ago
  1. #!/bin/sh
  2. # Convert PostScript to PDF 1.3 (Acrobat 4-and-later compatible).
  3. ps2pdfwr="`dirname \"$0\"`/ps2pdfwr"
  4. if test ! -x "$ps2pdfwr"; then
  5. ps2pdfwr="ps2pdfwr"
  6. fi
  7. exec "$ps2pdfwr" -dCompatibilityLevel=1.3 -dWriteXRefStm=false -dWriteObjStms=false "$@"