From owner-freebsd-questions@FreeBSD.ORG Thu Apr 12 10:40:39 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C7CF16A401 for ; Thu, 12 Apr 2007 10:40:39 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out3.blueyonder.co.uk (smtp-out3.blueyonder.co.uk [195.188.213.6]) by mx1.freebsd.org (Postfix) with ESMTP id D644913C457 for ; Thu, 12 Apr 2007 10:40:38 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.147] (helo=anti-virus03-10) by smtp-out3.blueyonder.co.uk with smtp (Exim 4.52) id 1HbwjE-00059q-MA; Thu, 12 Apr 2007 11:40:36 +0100 Received: from [62.31.10.181] (helo=[192.168.0.2]) by asmtp-out2.blueyonder.co.uk with esmtp (Exim 4.52) id 1HbwjD-0002w2-UW; Thu, 12 Apr 2007 11:40:35 +0100 Message-ID: <461E0CA3.2070001@dial.pipex.com> Date: Thu, 12 Apr 2007 11:40:35 +0100 From: Alex Zbyslaw User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-GB; rv:1.7.13) Gecko/20061205 X-Accept-Language: en MIME-Version: 1.0 To: Murray Taylor References: <04E232FDCD9FBE43857F7066CAD3C0F12DF080@svmailmel.bytecraft.internal> In-Reply-To: <04E232FDCD9FBE43857F7066CAD3C0F12DF080@svmailmel.bytecraft.internal> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: David Stanford , FreeBSD Mailing List Subject: Re: Port for Roller? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Apr 2007 10:40:39 -0000 Murray Taylor wrote: >cd /usr/ports >make search key=roller | more > >If its there this will find it ... and often much more as well >depending on the key string used. grepping for Port: cuts down >on the gibbering a bit > > > make search name=roller | less will only look in the name of the port. I find this (tcsh) alias useful as it strips lots of the cruft: (chdir /usr/ports; make search name=!:1 | egrep '^Port|^Info|^Path|^$') The actual alias line is far more hideous to account for the quotes: alias portname '(chdir /usr/ports; make search name=\!:1 | egrep '"'"'^Port|^Info|^Path|^$'"'"')' and similar for portkey. --Alex