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 kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html