13ff48bf5SDavid du Colombier#!/bin/sh 2*593dc095SDavid du Colombier# $Id: pphs,v 1.4 2004/08/04 00:55:46 giles Exp $ 33ff48bf5SDavid du Colombier# Print the Primary Hint Stream from a linearized PDF file. Usage: 43ff48bf5SDavid du Colombier# pphs filename.pdf 53ff48bf5SDavid du Colombier# Output goes to stdout. 63ff48bf5SDavid du Colombier 7*593dc095SDavid du Colombier# This definition is changed on install to match the 8*593dc095SDavid du Colombier# executable name set in the makefile 9*593dc095SDavid du ColombierGS_EXECUTABLE=gs 10*593dc095SDavid du Colombier 11*593dc095SDavid du Colombierexec $GS_EXECUTABLE -q -dNODISPLAY -- pphs.ps "$@" 12