星火微课系统客户端
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pf2afm 537B

1234567891011121314151617
  1. #!/bin/sh
  2. # $Id: pf2afm 8107 2007-07-05 19:04:29Z till $
  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. # This definition is changed on install to match the
  8. # executable name set in the makefile
  9. GS_EXECUTABLE=gs
  10. gs="`dirname $0`/$GS_EXECUTABLE"
  11. if test ! -x "$gs"; then
  12. gs="$GS_EXECUTABLE"
  13. fi
  14. GS_EXECUTABLE="$gs"
  15. exec "$GS_EXECUTABLE" -q -dNODISPLAY -dSAFER -dDELAYSAFER -- pf2afm.ps "$@"