From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1MCwB4-00054g-V6 for mharc-grub-devel@gnu.org; Sat, 06 Jun 2009 09:43:19 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MCwB1-00051b-Ub for grub-devel@gnu.org; Sat, 06 Jun 2009 09:43:15 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MCwAx-00051P-Nn for grub-devel@gnu.org; Sat, 06 Jun 2009 09:43:15 -0400 Received: from [199.232.76.173] (port=45970 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MCwAx-00051M-LI for grub-devel@gnu.org; Sat, 06 Jun 2009 09:43:11 -0400 Received: from moutng.kundenserver.de ([212.227.126.177]:51916) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MCwAx-0008LC-5A for grub-devel@gnu.org; Sat, 06 Jun 2009 09:43:11 -0400 Received: from [85.180.3.52] (e180003052.adsl.alicedsl.de [85.180.3.52]) by mrelayeu.kundenserver.de (node=mrelayeu3) with ESMTP (Nemesis) id 0MKxQS-1MCwAv3aAo-00028A; Sat, 06 Jun 2009 15:43:10 +0200 From: Felix Zielcke To: The development of GRUB 2 In-Reply-To: <1244283931.3418.7.camel@fz.local> References: <1244283931.3418.7.camel@fz.local> Content-Type: text/plain Date: Sat, 06 Jun 2009 15:43:08 +0200 Message-Id: <1244295788.3418.9.camel@fz.local> Mime-Version: 1.0 X-Mailer: Evolution 2.26.2 Content-Transfer-Encoding: 7bit X-Provags-ID: V01U2FsdGVkX19KSwNQ9Mhth6AzzszcYWLwxGiCAF3dGIafKcM 85TDYD7x/3PY+YX5ypRcvrD7pNAh2cesei3CbLcQAwtntw7kAm iOtA97VdFZvzg/KJRq3Hr8RNg/a4G4I X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: Re: 2273 lines in 170 files consists of only space and tabulators X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Jun 2009 13:43:16 -0000 Am Samstag, den 06.06.2009, 12:25 +0200 schrieb Felix Zielcke: > fz@fz:~/grub/grub2.git$ rgrep -E "^[[:blank:]]+$" *|wc -l > 2273 > fz@fz:~/grub/grub2.git$ rgrep -E "^[[:blank:]]+$" *|sed -e 's/:.*//'|uniq|wc -l > 170 Seems like the regexp isn't clear for everyone, at least Vladimir. This matches only lines with have at least one space or one tab, not totally empty lines. And the sed would only change them to true empty lines, not remove them completely. > > Felix Zielcke