summaryrefslogtreecommitdiffstats
path: root/mantools/spell
diff options
context:
space:
mode:
Diffstat (limited to 'mantools/spell')
-rwxr-xr-xmantools/spell10
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