10 lines
140 B
Bash
Executable file
10 lines
140 B
Bash
Executable file
#!/bin/sh
|
|
|
|
LC_ALL=C
|
|
export LC_ALL
|
|
|
|
for i in $*
|
|
do
|
|
echo === $i ===
|
|
mantools/html2readme $i | col -b | spell | grep -F -vxf proto/stop
|
|
done
|