DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦f3f75a7ed⟧ TextFile

    Length: 317 (0x13d)
    Types: TextFile
    Names: »check.sh«

Derivation

└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./DVIware/laser-setters/umd-dvi/misc/check.sh« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦af5ba6c8e⟧ »unix3.0/DVIWARE.tar.Z« 
        └─⟦ca79c7339⟧ 
            └─⟦this⟧ »DVIware/laser-setters/mctex/misc/mf79/check.sh« 

TextFile

#! /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