URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [gen_or1k_isa/] [l2h] - Rev 1774
Go to most recent revision | Compare with Previous | Blame | View Log
#!/bin/bash
# l2h latex to HTML script to call TtH.
if [ $# -lt 1 ] ; then
echo " Usage: l2h file [switches]" 1>&2
exit 1
else
WHOLE=$1
FILE=${WHOLE%.tex}
shift 1
./tth <$FILE.tex >$FILE.html -L$FILE $*
fi
Go to most recent revision | Compare with Previous | Blame | View Log