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.

15 lines
404 B

1 month ago
  1. #!/bin/sh
  2. # Print the Primary Hint Stream from a linearized PDF file. Usage:
  3. # pphs filename.pdf
  4. # Output goes to stdout.
  5. # This definition is changed on install to match the
  6. # executable name set in the makefile
  7. GS_EXECUTABLE=gs
  8. gs="`dirname \"$0\"`/$GS_EXECUTABLE"
  9. if test ! -x "$gs"; then
  10. gs="$GS_EXECUTABLE"
  11. fi
  12. GS_EXECUTABLE="$gs"
  13. exec "$GS_EXECUTABLE" -q -P- -dSAFER -dNODISPLAY -- pphs.ps "$@"