scyther/src/testl
2004-04-23 10:58:43 +00:00

23 lines
366 B
Bash
Executable File

#!/bin/bash
#
# Shell script to display the latex output relatively quickly. For
# internal testing only, as it depends on the spdl subdirectory.
#
# Usage example:
#
# ./testl ns3
#
file=spdl/$1.spdl outfile=tempattack
if [ -f $file ]
then
./scyther --latex <$file >$outfile.tex
latex $outfile.tex
xdvi $outfile.dvi
else
echo "No file $file found."
fi