星火微课系统客户端
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.

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