diff --git a/tools/diag/ac/ac b/tools/diag/ac/ac index 511cf263e374..0090e486256a 100644 --- a/tools/diag/ac/ac +++ b/tools/diag/ac/ac @@ -1,6 +1,6 @@ #!/bin/sh # Copyright (c) March 1997. Wolfram Schneider . Berlin. -# (c) 1999, Alexey Zelkin +# (c) 1999, 2002 Alexey Zelkin # This script is dedicated to the FreeBSD core team. # # ac - check if the FreeBSD handbook is in sync with the committers list @@ -8,17 +8,19 @@ # $FreeBSD$ : ${CVSROOT=/home/ncvs} -contrib=doc/en_US.ISO8859-1/books/handbook/staff/chapter.sgml +contrib=doc/en_US.ISO8859-1/articles/contributors/article.sgml access=CVSROOT/access cvs='cvs -Q co -p' tmp=${TMPDIR-/tmp}/_committers $cvs $contrib | perl -ne 'print "$1\n" if /\&a\.([^;]+)/' | + awk '{ print $1 }' | sort -u > $tmp.contrib $cvs $access | sed 's/^\#.*//g' | + awk '{ print $1 }' | sort -u > $tmp.access diff -u $tmp.access $tmp.contrib