xref: /plan9/sys/src/cmd/gs/lib/pf2afm (revision 593dc095aefb2a85c828727bbfa9da139a49bdf4)
1#!/bin/sh
2# $Id: pf2afm,v 1.5 2004/08/04 00:55:46 giles Exp $
3# Make an AFM file from PFB / PFA and (optionally) PFM files.  Usage:
4#	pf2afm fontfilename
5# Output goes to fontfilename.afm, which must not already exist.
6# See pf2afm.ps for more details.
7
8# This definition is changed on install to match the
9# executable name set in the makefile
10GS_EXECUTABLE=gs
11
12exec $GS_EXECUTABLE -q -dNODISPLAY -dSAFER -dDELAYSAFER  -- pf2afm.ps "$@"
13