8 lines
91 B
Bash
Executable File
8 lines
91 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for i in $*
|
|
do
|
|
echo === $i ===
|
|
dehtml $i | spell | fgrep -vxf proto/stop
|
|
done
|