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 	mantools/html2readme $i | col -b | spell | grep -F -vxf proto/stop
     10 done
     11