From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752762AbcAGJn5 (ORCPT ); Thu, 7 Jan 2016 04:43:57 -0500 Received: from userp1040.oracle.com ([156.151.31.81]:27296 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752052AbcAGJn4 (ORCPT ); Thu, 7 Jan 2016 04:43:56 -0500 Date: Thu, 7 Jan 2016 12:43:45 +0300 From: Dan Carpenter To: Sudeep Dutt , Greg Kroah-Hartman Cc: Ashutosh Dixit , Joe Perches , linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Andrew Morton Subject: Re: [patch] MAINTAINERS: fix MIC maintainers entry Message-ID: <20160107094345.GB5177@mwanda> References: <20160107094001.GE27186@mwanda> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160107094001.GE27186@mwanda> User-Agent: Mutt/1.5.21 (2010-09-15) X-Source-IP: userv0021.oracle.com [156.151.31.71] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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