#! /bin/sh
#
# check - check the width tables of all the PXL fonts
#
# usage: check directory-name

case $# in
1) ;;
*) echo "usage: check directory-name" 1>&2; exit 1;;
esac

checker=`pwd`/checkw

cd "$1"

for tfm in *.tfm; do
	base=`basename $tfm .tfm`
	for pxl in $base.*pxl; do
		$checker -q $tfm $pxl
	done
done
