#! /bin/sh
if [ ! -f ./revise_source_html ]; then
    echo "prepare revise_source_html in this directory"
    exit 0
fi
for f in T*.hh; do
    html=$f.html
    enscript -Ecpp --color --language=html -o$html $f
done
for f in T*.cc; do
    html=$f.html
    enscript -Ecpp --color --language=html -o$html $f
done
for f in T*.hh.html; do
    ./revise_source_html $f
done
for f in T*.cc.html; do
    ./revise_source_html $f
done
exit 0
