]> mj.ucw.cz Git - temple.git/blob - example/bin/htmlcheck
Added an example and Temple::Links from MJ's home page.
[temple.git] / example / bin / htmlcheck
1 #!/bin/sh
2
3 onsgmls -Dbin/dtd -cHTML4.cat -s $1 2>&1 | {
4   any_error=0
5   while read line 
6   do
7     any_error=1
8     echo $line
9   done
10   exit $any_error
11 }
12 exit $?