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
6# This definition is changed on install to match the
7# executable name set in the makefile
8GS_EXECUTABLE=gs
9gs="`dirname \"$0\"`/$GS_EXECUTABLE"
10if test ! -x "$gs"; then
11	gs="$GS_EXECUTABLE"
12fi
13GS_EXECUTABLE="$gs"
14
15exec "$GS_EXECUTABLE" -q -P- -dSAFER -dNODISPLAY -- pphs.ps "$@"
16