weekly.sh revision a84fcef461d6ef423fa3bdefc29d745bd34cb331
#!/bin/bash -x
PATH=/bin:/usr/bin:/usr/X11R6/bin:/home/linux-bkb/bin
HETS_LIB=/local/home/maeder/haskell/CASL-lib
export PATH
export HETS_LIB
cd $HETS_LIB
# install a newer binary
#chgrp linuxbkb hets
#\cp -fp hets /home/linux-bkb/bin/
# check differences of *.pp.het and *.pp.pp.het
cat Basic/*.pp.het pp1.txt
\rm -f Basic/*.env
hets -v2 -o pp.het Basic/*.pp.het
cat Basic/*.pp.pp.het pp2.txt
diff pp1.txt pp2.txt
# try consistency check with SPASS
hets -v2 -o dfg.c Basic/*.casl
date
/local/home/maeder/haskell/runSPASSconsistency.sh
date
# check other examples
date
for i in */*/*.het */*/*.casl; \
do hets -v2 -o prf,th,pp.het,pp.tex $i; done
date
for i in */*/*.prf; do hets -v2 -o th $i; done
date