From 0387ab1e0673c9f1f96a8c52a6c128052b52022c Mon Sep 17 00:00:00 2001 From: ng0 Date: Mon, 4 Mar 2019 14:12:43 +0000 Subject: Add rule to lint man --- contrib/scripts/lint-man.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 contrib/scripts/lint-man.sh (limited to 'contrib') diff --git a/contrib/scripts/lint-man.sh b/contrib/scripts/lint-man.sh new file mode 100755 index 000000000..6a9f544f4 --- /dev/null +++ b/contrib/scripts/lint-man.sh @@ -0,0 +1,18 @@ +#!/bin/sh +# +# SPDX-License-Identifier: 0BSD +# spit out ONLY error messages using groff. + +echo "groff check" +for f in `find . -name \*\.[1-9]`; +do + LC_ALL=en_US.UTF-8 \ + MANROFFSEQ='' \ + MANWIDTH=80 \ + groff -m mandoc -b -z -w w $f; +done +echo "mandoc check" +# spit out ONLY error messages with mandoc: +mandoc -T lint `find . -name \*\.[1-9]` +#LC_ALL=en_US.UTF-8 MANROFFSEQ='' MANWIDTH=80 /run/current-system/profile/bin/man --warnings -E UTF-8 -l -Tutf8 -Z <*.5> >report5.log +#LC_ALL=en_US.UTF-8 MANROFFSEQ='' MANWIDTH=80 /run/current-system/profile/bin/man --warnings -E UTF-8 -l -Tutf8 -Z <*.1> >report1.log -- cgit v1.2.3