From: Paul Gortmaker <p_gortmaker@yahoo.com>
To: Rolf Eike Beer <eike@bilbo.math.uni-mannheim.de>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] 2.5.7 Documentation/00-INDEX
Date: Fri, 22 Mar 2002 08:16:08 -0500 [thread overview]
Message-ID: <3C9B2E98.2FE4B4A5@yahoo.com> (raw)
In-Reply-To: <200203210835.51213@bilbo.math.uni-mannheim.de>
Rolf Eike Beer wrote:
>
> This patch updates Documentation/00-INDEX. It removes some lines describing
> files that have been removed/moved to subdirectories. Also it adds some lines
> on new files/directories.
>
> Eike
Hey, thanks. In case you haven't automated this check already, see my $0.02
script attached below that I try to run over 00-INDEX every now and again.
> +driver.txt
> + - info about Linux driver modell.
Should be driver-model.txt IIRC, and s/ll/l/ too.
Paul.
--
#!/bin/sh
# For keeping an eye on 00-INDEX files in the linux/Documentation/ dir.
echo Checking for unreferenced files...
for i in *
do
grep -q $i 00-INDEX
if [ $? = 1 ];then
echo $i is not in 00-INDEX
fi
done
echo -------------------------------------------
echo Checking for orphaned entries...
for i in `awk '/^\t- / {print FNR-1}' 00-INDEX`
do
FNAME=`awk FNR==$i 00-INDEX`
if [ ! -e "$FNAME" ];then
echo $FNAME is in 00-INDEX but does not exist
fi
done
echo Done.
prev parent reply other threads:[~2002-03-22 13:46 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-03-21 7:35 [PATCH] 2.5.7 Documentation/00-INDEX Rolf Eike Beer
2002-03-21 8:12 ` Andreas Jaeger
2002-03-21 8:22 ` Rolf Eike Beer
2002-03-21 13:58 ` Mr. James W. Laferriere
2002-03-21 15:35 ` Steven Cole
2002-03-22 13:16 ` Paul Gortmaker [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3C9B2E98.2FE4B4A5@yahoo.com \
--to=p_gortmaker@yahoo.com \
--cc=eike@bilbo.math.uni-mannheim.de \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.