File: l2h

package info (click to toggle)
tth 2.92-1
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 1,268 kB
  • ctags: 656
  • sloc: sh: 57; makefile: 42
file content (11 lines) | stat: -rwxr-xr-x 223 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/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