home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / bin / pf2afm < prev    next >
Encoding:
Text File  |  2005-11-16  |  376 b   |  13 lines

  1. #!/bin/sh
  2. # $Id: pf2afm,v 1.4 2002/02/21 21:49:28 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. gs="`dirname $0`/gs"
  8. if test ! -x "$gs"; then
  9.     gs=gs
  10. fi
  11.  
  12. exec "$gs" -q -dNODISPLAY -dSAFER -dDELAYSAFER  -- pf2afm.ps "$@"
  13.