[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20160107094345.GB5177@mwanda>
Date: Thu, 7 Jan 2016 12:43:45 +0300
From: Dan Carpenter <dan.carpenter@...cle.com>
To: Sudeep Dutt <sudeep.dutt@...el.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: Ashutosh Dixit <ashutosh.dixit@...el.com>,
Joe Perches <joe@...ches.com>, linux-kernel@...r.kernel.org,
kernel-janitors@...r.kernel.org,
Andrew Morton <akpm@...ux-foundation.org>
Subject: Re: [patch] MAINTAINERS: fix MIC maintainers entry
I wrote some bash to find problems in MAINTAINERS. I'm not sure what to
do with it.
# Grep for missing colons
for i in $(cut -b 1-2 MAINTAINERS | grep : | sort | uniq | cut -b 1) ; do
egrep "^$i[ ]" MAINTAINERS
done
# Grep for non-existing files
for i in $(grep ^F: MAINTAINERS | grep -v '\*' | cut -d : -f 2-) ; do
if ! test -e $i ; then
echo $i
fi
done
regards,
dan carpenter
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists