home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # $Id: pf2afm,v 1.4 2002/02/21 21:49:28 giles Exp $
- # Make an AFM file from PFB / PFA and (optionally) PFM files. Usage:
- # pf2afm fontfilename
- # Output goes to fontfilename.afm, which must not already exist.
- # See pf2afm.ps for more details.
- gs="`dirname $0`/gs"
- if test ! -x "$gs"; then
- gs=gs
- fi
-
- exec "$gs" -q -dNODISPLAY -dSAFER -dDELAYSAFER -- pf2afm.ps "$@"
-