NetBSD-5.0.2/share/man/tools/ckspell

#! /bin/sh
#
#	$NetBSD: ckspell,v 1.2 1998/01/09 08:04:59 perry Exp $
#
set x $*
. ./.param

TOOLS=$MANDIR/tools

date > $TMPDIR/sp.errs
echo >> $TMPDIR/sp.errs

for dir in $DIRLST
do
	cd $MANDIR/man$dir
	echo "cat <<'EOF' >----------------" >> $TMPDIR/sp.errs
	echo "Section $dir" >> $TMPDIR/sp.errs
	for file in $FILLST
	do
		spell $file >> $TMPDIR/tmp.$$
	done
	sort $TMPDIR/tmp.$$ | uniq | comm -23 - $TOOLS/sp.ignore >> $TMPDIR/sp.errs
	> $TMPDIR/tmp.$$
done

rm -f $TMPDIR/tmp.$$