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