From owner-freebsd-questions@FreeBSD.ORG Fri Nov 21 08:52:17 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DAAB16A4CE for ; Fri, 21 Nov 2003 08:52:17 -0800 (PST) Received: from mx1.senokian.com (mx1.senokian.com [213.161.76.115]) by mx1.FreeBSD.org (Postfix) with SMTP id F414A43FB1 for ; Fri, 21 Nov 2003 08:52:14 -0800 (PST) (envelope-from jake.stride@senokian.com) Received: (qmail 12656 invoked by uid 505); 21 Nov 2003 16:52:14 +0000 Received: from jake.stride@senokian.com by mx1.senokian by uid 501 with qmail-scanner-1.16 (clamscan: 0.60. spamassassin: 2.55. Clear:. Processed in 0.636654 secs); 21 Nov 2003 16:52:14 -0000 Received: from unknown (HELO senokian.com) (195.137.92.210) by outmail.senokian.com with SMTP; 21 Nov 2003 16:52:13 +0000 Date: Fri, 21 Nov 2003 16:54:56 +0000 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v553) From: Jake Stride To: freebsd-questions@freebsd.org Content-Transfer-Encoding: 7bit In-Reply-To: <6.0.0.22.0.20031121114154.08a0a190@pop.face2interface.com> Message-Id: <6F8B18DA-1C43-11D8-8C79-000A956E520C@senokian.com> X-Mailer: Apple Mail (2.553) Subject: Re: a good way to save a keystroke? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Nov 2003 16:52:17 -0000 On Friday, Nov 21, 2003, at 16:44 Europe/London, Marty Landman wrote: > I wanted to look at a file and figured why not pipe the output of > which to more, which of course didn't work so I figured if I > backticked the which output with more in front that would work, and > apparently it does (though I'm not sure that the cmd itself wasn't > executed?). > > e.g. more `which apachectl` > > Is this a reasonable way to get what I'm after, or a bad thing? > more cat | more Should work Jake