1#!/bin/sh
2
3for i in $*
4do
5	echo === $i ===
6	mantools/html2readme $i | col -b | spell | fgrep -vxf proto/stop
7done
8