Home | History | Annotate | Line # | Download | only in mantools
      1 #!/bin/sh
      2 
      3 LC_ALL=C
      4 export LC_ALL
      5 
      6 for i in $*
      7 do
      8 	echo === $i ===
      9 	dehtml $i | tr A-Z a-z | double
     10 done
     11