diff options
author | phantom <phantom@FreeBSD.org> | 2002-02-07 19:13:06 +0000 |
---|---|---|
committer | phantom <phantom@FreeBSD.org> | 2002-02-07 19:13:06 +0000 |
commit | d47492efbebdb6df7494ccfc17fae12de250e27d (patch) | |
tree | 272a50a885d352b2d1e6392e59bfbda4bcf3b6ea /tools | |
parent | 98906825c7cb6c7609ae5d5774d7e3a76346da86 (diff) | |
download | FreeBSD-src-d47492efbebdb6df7494ccfc17fae12de250e27d.zip FreeBSD-src-d47492efbebdb6df7494ccfc17fae12de250e27d.tar.gz |
This script has served its purpose. Now its function is one of subfunctions
of recently added cknames.pl.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/diag/ac/ac | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/tools/diag/ac/ac b/tools/diag/ac/ac deleted file mode 100644 index 0090e48..0000000 --- a/tools/diag/ac/ac +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# Copyright (c) March 1997. Wolfram Schneider <wosch@FreeBSD.ORG>. Berlin. -# (c) 1999, 2002 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=/home/ncvs} -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 /<para>\&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 -rm -f $tmp.access $tmp.contrib |