1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#! /bin/sh echo '#' >texmf.cnf ./detex $srcdir/test.tex >test.out \ && diff test.out $srcdir/test.lout \ || exit 1 ./detex -l $srcdir/test.tex >test.out \ && diff test.out $srcdir/test.lout \ || exit 1 ./detex -t $srcdir/test.tex >test.out \ && diff test.out $srcdir/test.tout \ || exit 1