#!/bin/csh
# This file is MF79.gf300
# Convert all the pk300 fonts to gf format
# This file selects the AMS m-series fonts.
set plnames=./
foreach f (`find $plnames -name 'm*pl' -print` )
  set g=`echo $f:t`
  echo $g
  set h=`echo $g:r`
  echo $h
  pltotf $f ./$h.tfm
end
