summaryrefslogtreecommitdiff
path: root/static/netbsd/tools/ckspell
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-25 15:32:58 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-25 15:32:58 -0400
commit5cb84ec742fd33f78c8022863fadaa8d0d93e176 (patch)
tree1a81ca3665e6153923e40db7b0d988f8573ab59c /static/netbsd/tools/ckspell
parenta59214f344567c037d5776879bcfc5fcc1d4d5f6 (diff)
feat: Added NetBSD man pages
Diffstat (limited to 'static/netbsd/tools/ckspell')
-rwxr-xr-xstatic/netbsd/tools/ckspell26
1 files changed, 26 insertions, 0 deletions
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.$$