From owner-freebsd-questions Sat Dec 29 10:34: 0 2001 Delivered-To: freebsd-questions@freebsd.org Received: from smtp-send.myrealbox.com (smtp-send.myrealbox.com [192.108.102.143]) by hub.freebsd.org (Postfix) with ESMTP id 2834837B416 for ; Sat, 29 Dec 2001 10:33:58 -0800 (PST) Received: from ppp9-229.ath.forthnet.gr Bernie_X@smtp-send.myrealbox.com [213.16.156.229] by smtp-send.myrealbox.com with Novell NIMS $Revision: 2.88 $ on Novell NetWare; Sat, 29 Dec 2001 11:33:52 -0700 Date: Sat, 29 Dec 2001 18:21:58 +0200 (EET) From: Bernie X-X-Sender: root@ To: Dave Runkle Cc: Bernie , Subject: Re: Easy Questions -- newcomer In-Reply-To: <20011228154212.N59997-100000@trittico.fiddi.com> Message-ID: <20011229182104.E3777-100000@> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanx for the tip. Checked it out and works very nicely... Bernie On Fri, 28 Dec 2001, Dave Runkle wrote: > > > 2. How can i redirect the output of 'make' in c-shell with stdout > > in one file and stderr in another? i thied this: > > make >make_stdout.txt 2>make_stderr.txt > > but i got messg ambigus redirection. i suspect that the above > > works for bash only (or maybe not). In any case, what's the > > equivalent for tcsh? > > Try script(1). It's installed with the base system, a utility to > capture each and every character that hits your screen. You'll start > it with, for instance: > > script /var/tmp/logs/buildworld-011228.log > > then go through all of your builds, and when you're done, type: > > exit > > to end the script. Now you can > > less /var/tmp/logs/buildworld-011228.log > > and view everything that happened, with full search capabilities. > See 'man 1 script' for details. > > I think Clark answered the other questions quite nicely, so there is > nothing more to add. > > Dave > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message