diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/diag/ac/ac | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/tools/diag/ac/ac b/tools/diag/ac/ac index 6bff173..8bb86cf 100644 --- a/tools/diag/ac/ac +++ b/tools/diag/ac/ac @@ -1,26 +1,25 @@ #!/bin/sh # Copyright (c) March 1997. Wolfram Schneider <wosch@FreeBSD.ORG>. Berlin. +# (c) 1999, Alexey Zelkin <phantom@FreeBSD.org> # This script is dedicated to the FreeBSD core team. # # ac - check if the FreeBSD handbook is in sync with the committers list # # $FreeBSD$ -: ${CVSROOT=/usr/cvs} -contrib=src/share/doc/handbook/contrib.sgml -avail=CVSROOT/avail +: ${CVSROOT=/home/ncvs} +contrib=doc/en_US.ISO_8859-1/books/handbook/staff/chapter.sgml +access=CVSROOT/access cvs='cvs -Q co -p' tmp=${TMPDIR-/tmp}/_committers -$cvs $contrib | - perl -ne 'print if /contrib:core/ .. /contrib:doc/' | - perl -ne 'print "$1\n" if /<item>\&a\.([^;]+)/' | +$cvs $contrib | + perl -ne 'print "$1\n" if /<para>\&a\.([^;]+)/' | sort -u > $tmp.contrib -$cvs $avail | - sed -n 's/^avail\|//p' | - perl -npe 's/,/\n/g' | - sort -u > $tmp.avail +$cvs $access | + sed 's/^\#.*//g' | + sort -u > $tmp.access -diff -u $tmp.avail $tmp.contrib -rm -f $tmp.avail $tmp.contrib +diff -u $tmp.access $tmp.contrib +rm -f $tmp.access $tmp.contrib
\ No newline at end of file |