xref: /netbsd-src/external/ibm-public/postfix/dist/mantools/spell (revision 53d1339bf7f9c7367b35a9e1ebe693f9b047a47b)
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 | fgrep -vxf proto/stop
10done
11