home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / s / stex2-18.zip / SeeTeX / Mftobdf / buildfonts.scr < prev    next >
Text File  |  1991-02-19  |  286b  |  18 lines

  1. #!/bin/sh
  2. MFTOBDF=mftobdf
  3. FONTDIR=/usr/lib/X11/fonts/xtex
  4. #
  5. cd ${FONTDIR}
  6. ${MFTOBDF} $*
  7. for file in *.bdf ;
  8. do
  9.    base=`echo $file | sed -e 's/.bdf//g'`
  10.    echo Process $base
  11.    bdftosnf $base.bdf > ${FONTDIR}/$base.snf
  12.    rm -f $base.bdf
  13. done
  14. #
  15. mkfontdir
  16. xset +fp `pwd`
  17. xset fp rehash
  18.