mirror of
https://github.com/nasa/fpp.git
synced 2026-04-12 14:13:33 -05:00
13 lines
232 B
Plaintext
13 lines
232 B
Plaintext
#!/bin/sh -e
|
|
|
|
# ----------------------------------------------------------------------
|
|
# spell.do
|
|
# ----------------------------------------------------------------------
|
|
|
|
. ./defs.sh
|
|
|
|
for file in $FILES
|
|
do
|
|
ispell $file 1>&2
|
|
done
|