1#!/bin/sh 2 3LC_ALL=C 4export LC_ALL 5 6for i in $* 7do 8 echo === $i === 9 mantools/html2readme $i | col -b | spell | grep -F -vxf proto/stop 10done 11