home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / bin / pf2afm < prev    next >
Encoding:
Text File  |  2006-11-28  |  434 b   |  13 lines

  1. #!/bin/sh
  2. # $Id: pf2afm 6300 2005-12-28 19:56:24Z giles $
  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
  10. GS_EXECUTABLE=gs
  11.  
  12. exec $GS_EXECUTABLE -q -dNODISPLAY -dSAFER -dDELAYSAFER  -- pf2afm.ps "$@"
  13.