#!/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: src/tools/diag/ac/ac,v 1.3.2.1 2002/01/04 19:30:12 phantom Exp $ # $DragonFly: src/tools/diag/ac/ac,v 1.2 2003/06/17 04:29:11 dillon Exp $ : ${CVSROOT=/home/ncvs} contrib=doc/en_US.ISO8859-1/books/handbook/staff/chapter.sgml access=CVSROOT/access cvs='cvs -Q co -p' tmp=${TMPDIR-/tmp}/_committers $cvs $contrib | perl -ne 'print "$1\n" if /\&a\.([^;]+)/' | sort -u > $tmp.contrib $cvs $access | sed 's/^\#.*//g' | sort -u > $tmp.access diff -u $tmp.access $tmp.contrib rm -f $tmp.access $tmp.contrib