#!/bin/sh -e # ---------------------------------------------------------------------- # spell.do # ---------------------------------------------------------------------- . ./defs.sh for file in $FILES do ispell $file 1>&2 done