Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S262669AbVE1CTk (ORCPT ); Fri, 27 May 2005 22:19:40 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S262671AbVE1CTj (ORCPT ); Fri, 27 May 2005 22:19:39 -0400 Received: from fire.osdl.org ([65.172.181.4]:28358 "EHLO smtp.osdl.org") by vger.kernel.org with ESMTP id S262669AbVE1CTd (ORCPT ); Fri, 27 May 2005 22:19:33 -0400 Date: Fri, 27 May 2005 19:21:31 -0700 (PDT) From: Linus Torvalds To: Andrew Morton cc: perex@suse.cz, linux-kernel@vger.kernel.org, git@vger.kernel.org Subject: Re: ALSA official git repository In-Reply-To: <20050527154625.5490f405.akpm@osdl.org> Message-ID: References: <20050527135124.0d98c33e.akpm@osdl.org> <20050527154625.5490f405.akpm@osdl.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 620 Lines: 25 On Fri, 27 May 2005, Andrew Morton wrote: > > That all assumes that the tools are smart enough to separate the email > headers from the body :( Well, _that_ is trivial: the first empty line is the marker between header and body. This is a stupid awk program to do this: /^From: / { name=$0 } state==1 { print name; exit } /^$/ { state=1 } Or something. Linus - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/