From owner-svn-src-head@FreeBSD.ORG Wed May 9 23:05:10 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6A9FA106566C; Wed, 9 May 2012 23:05:10 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: from mail-vb0-f54.google.com (mail-vb0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id DEC148FC12; Wed, 9 May 2012 23:05:09 +0000 (UTC) Received: by vbmv11 with SMTP id v11so1208720vbm.13 for ; Wed, 09 May 2012 16:05:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=SSk9UfQQ/lS/z+IfRupBM8D27sruMfH+UqSXbPXzDvo=; b=koMi9ChhJCBmkWQ/Nc3idMIhndsf6VL7v5Qouf9CQ6jUZWckJtHhRn9O9k/mIeF7lA 7i02/YRUrIQ3taZXNI5lJAto/VOQcCHSEgaXZoU8aatarxoT9W/xNkDHU2eAdl5fEhA3 bmcQxezgef1VPVvTJSVvyxkyfz+OSHI3SAlz0cfxdwu/2lcvqfbenSRcC49kNOwDXwlr YAIjFH4HFGTTSJTQsi3u/pmc2bbWovTZ6sr56J1yurEKLDwvDMS9V72RzDxOXRAbf2u/ davC0jyX2t1d3KlozZbL/7KUMf/VGByhVEa89BAmqxPSNtMHGrezRpI9CQLNEL2x+eB3 rxOw== MIME-Version: 1.0 Received: by 10.52.75.105 with SMTP id b9mr966699vdw.26.1336604709194; Wed, 09 May 2012 16:05:09 -0700 (PDT) Received: by 10.220.7.148 with HTTP; Wed, 9 May 2012 16:05:09 -0700 (PDT) In-Reply-To: <201205092213.q49MDvuk005057@svn.freebsd.org> References: <201205092213.q49MDvuk005057@svn.freebsd.org> Date: Wed, 9 May 2012 16:05:09 -0700 Message-ID: From: Garrett Cooper To: Eitan Adler Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r235209 - head/games/fortune/datfiles X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 May 2012 23:05:10 -0000 On Wed, May 9, 2012 at 3:13 PM, Eitan Adler wrote: > Author: eadler > Date: Wed May =A09 22:13:56 2012 > New Revision: 235209 > URL: http://svn.freebsd.org/changeset/base/235209 > > Log: > =A0Add a few new tips and update some old ones to more modern commands > > =A0MFC after: =A0 =A01 week > > Modified: > =A0head/games/fortune/datfiles/freebsd-tips ... > -Want to find a specific port, just type the following under /usr/ports, > +Want to find a specific port, just type the following > =A0or one its subdirectories: > > - =A0 =A0 =A0 "make search name=3D" > + =A0 =A0 =A0 "make -C /usr/ports search name=3D" > =A0 =A0 or > - =A0 =A0 =A0 "make search key=3D" > + =A0 =A0 =A0 "make -C /usr/ports search key=3D" I've been told multiple times that YMMV for make -C vs cd ; make, FYI, so I've modified my behavior to match the cd ; make idiom. Interesting why I've only been told this in BSD circles though... ... > +Want to go the directory you were just in? > +In tcsh you can type "cd -" Same with sh ;)... -Garrett