File: check-man-pages

package info (click to toggle)
pcp 6.0.3-1.1
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 220,440 kB
  • sloc: ansic: 963,916; sh: 153,607; xml: 90,613; cpp: 82,736; python: 20,664; perl: 17,906; yacc: 9,980; makefile: 2,868; lex: 2,853; fortran: 60; java: 52
file content (20 lines) | stat: -rwxr-xr-x 317 bytes parent folder | download | duplicates (5)
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