From 5cb84ec742fd33f78c8022863fadaa8d0d93e176 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Sat, 25 Apr 2026 15:32:58 -0400 Subject: feat: Added NetBSD man pages --- static/netbsd/tools/ckspell | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 static/netbsd/tools/ckspell (limited to 'static/netbsd/tools/ckspell') diff --git a/static/netbsd/tools/ckspell b/static/netbsd/tools/ckspell new file mode 100755 index 00000000..90f01cc0 --- /dev/null +++ b/static/netbsd/tools/ckspell @@ -0,0 +1,26 @@ +#! /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.$$ -- cgit v1.2.3