diff options
Diffstat (limited to 'mantools/spell')
-rwxr-xr-x | mantools/spell | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mantools/spell b/mantools/spell new file mode 100755 index 0000000..f4138ed --- /dev/null +++ b/mantools/spell @@ -0,0 +1,10 @@ +#!/bin/sh + +LC_ALL=C +export LC_ALL + +for i in $* +do + echo === $i === + mantools/html2readme $i | col -b | spell | fgrep -vxf proto/stop +done |