NetBSD/share/man/tools/ckspell

27 lines
486 B
Plaintext
Raw Normal View History

1992-07-13 20:18:25 +04:00
#! /bin/sh
1998-01-09 11:03:16 +03:00
#
# $NetBSD: ckspell,v 1.2 1998/01/09 08:04:59 perry Exp $
#
1992-07-13 20:18:25 +04:00
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.$$