aboutsummaryrefslogtreecommitdiff
path: root/contrib/scripts/lint-man.sh
blob: 1a3f1514a93aed062ea2c4860bd1196bdde93910 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh
#
# SPDX-License-Identifier: 0BSD
# spit out ONLY error messages using groff.

existence()
{
    command -v "$1" >/dev/null 2>&1
}

if existence groff;
then
    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
fi

echo "mandoc check"
# spit out ONLY error messages with mandoc:
if existence mandoc;
then
    mandoc -T lint `find . -name \*\.[1-9]`
fi

#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