From 3fcae27b922f416ba18ca33fe1f071319c32dae3 Mon Sep 17 00:00:00 2001 From: Alexey Zelkin Date: Thu, 4 Nov 1999 08:45:02 +0000 Subject: Bring ``ac'' into reality. This great tools now works correctly (for current state of the tree) --- tools/diag/ac/ac | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) (limited to 'tools/diag') diff --git a/tools/diag/ac/ac b/tools/diag/ac/ac index 6bff17339a14..8bb86cfdd8c3 100644 --- a/tools/diag/ac/ac +++ b/tools/diag/ac/ac @@ -1,26 +1,25 @@ #!/bin/sh # Copyright (c) March 1997. Wolfram Schneider . Berlin. +# (c) 1999, Alexey Zelkin # 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 /\&a\.([^;]+)/' | +$cvs $contrib | + perl -ne 'print "$1\n" if /\&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 -- cgit v1.2.3