Re: [patch] MAINTAINERS: fix MIC maintainers entry

From: Dan Carpenter
Date: Thu Jan 07 2016 - 04:44:03 EST


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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/