7 lines
103 B
Bash
7 lines
103 B
Bash
#!/bin/sh
|
|
|
|
for file
|
|
do
|
|
echo ==== $file ====
|
|
deroff $file | spell | grep -F -vf proto/stop
|
|
done
|