Files
fpp/docs/index/spell.do
bocchino e636511974 Revise docs
Delete release directory
Add index directory
Revise index page
2021-08-06 11:44:36 -07:00

24 lines
438 B
Plaintext

#!/bin/sh -e
# ----------------------------------------------------------------------
# spell.do
# ----------------------------------------------------------------------
. ./defs.sh
# Check this directory
for file in $FILES
do
if ! echo $file | grep -q '/'
then
ispell $file 1>&2
fi
done
# Check this subdirectories
targets=`find . -mindepth 2 -name spell.do | sed 's/\.do$//'`
for target in $targets
do
redo $target
done