From owner-freebsd-ports@FreeBSD.ORG Tue Sep 13 21:05:34 2011 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD195106564A for ; Tue, 13 Sep 2011 21:05:34 +0000 (UTC) (envelope-from stephen@missouri.edu) Received: from wilberforce.math.missouri.edu (wilberforce.math.missouri.edu [128.206.184.213]) by mx1.freebsd.org (Postfix) with ESMTP id 963B18FC18 for ; Tue, 13 Sep 2011 21:05:34 +0000 (UTC) Received: from [127.0.0.1] (wilberforce.math.missouri.edu [128.206.184.213]) by wilberforce.math.missouri.edu (8.14.4/8.14.4) with ESMTP id p8DL5Wsl043614; Tue, 13 Sep 2011 16:05:33 -0500 (CDT) (envelope-from stephen@missouri.edu) Message-ID: <4E6FC59C.5090509@missouri.edu> Date: Tue, 13 Sep 2011 16:05:32 -0500 From: Stephen Montgomery-Smith User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.21) Gecko/20110831 Thunderbird/3.1.13 MIME-Version: 1.0 To: Oliver Fromme References: <201109131411.p8DEBTGA081124@lurza.secnetix.de> In-Reply-To: <201109131411.p8DEBTGA081124@lurza.secnetix.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "freebsd-ports@FreeBSD.ORG" Subject: Re: Thank you (for making the ports less boring). X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2011 21:05:34 -0000 On 09/13/2011 09:11 AM, Oliver Fromme wrote: > Stephen Montgomery-Smith wrote: > > particularly nasty thing to do. I get the impression that each > > committer has his own special way of doing this. For example, I have > > personally found that a simple grep won't work, because "grep xxx > > /usr/ports/*/Makefile*" just creates a line too long for the shell to > > handle. I use a shell construction involving "find" but I wonder how > > others do the same thing. > > cd /usr/ports > echo */*/Makefile* | xargs grep xxx That's amazing. It would never have occurred to me that "echo */*/Makefile*" works when "grep xxx */*/Makefile*". Is that because "echo" is a builtin command in csh (which is what I use)? I notice "/bin/echo */*/Makefile*" doesn't work. Is this documented somewhere?