blob: cf264243bd10a80a133b0058743c4d66c2fbecc6 [file] [log] [blame]
#!/bin/sh
tex_sources_all=`find . -name "*.tex" -print`
tex_sources=""
for f in $tex_sources_all
do
case $f in
./perfbook*) ;;
./qqz*) ;;
./glsdict.tex) ;;
./origpub.tex) ;;
./contrib.tex) ;;
./autodate.tex) ;;
./future/HTMtable*) ;;
./appendix/styleguide*) ;;
*) tex_sources="$tex_sources $f" ;;
esac
done
for g in $tex_sources
do
utilities/punctcheck.pl $g
utilities/percentcheck.pl $g
done