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