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