File: check-man-pages

package info (click to toggle)
pcp 5.2.6-1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 185,908 kB
  • sloc: ansic: 307,504; sh: 138,932; xml: 90,613; cpp: 65,924; python: 18,517; perl: 16,958; yacc: 8,925; lex: 2,843; makefile: 1,502; fortran: 60; java: 52
file content (20 lines) | stat: -rwxr-xr-x 317 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
#
# if a method is in pmapi.h, it should have a man page
#

tmp=/var/tmp/$$
trap "rm -f $tmp.*; exit 0" 0 1 2 3 15

grep PCP_CALL src/include/pcp/pmapi.h \
| sed -e 's/(.*//' -e 's/.* //' -e 's/^\*\**//' \
| while read func
do
    if man -k "$func" >$tmp.tmp
    then
	:
    else
	cat $tmp.tmp
    fi
done