#!/bin/sh
for font in *bdf.Z ;
do
  base=`echo $font | sed -e 's/\.bdf\.Z//'`
  zcat $font | dxfc > $base.pcf
  compress $base.pcf
done
