summaryrefslogtreecommitdiffstats
path: root/share/man/tools/ckspell
blob: 8a965842dc4996037a47a0f28ec3d58174db9423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/sh
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.$$
OpenPOWER on IntegriCloud