Subject: Re: redirecting /dev/stderr
To: Steve Revilak <revilak@umbsky.cc.umb.edu>
From: None <mcmahill@mtl.mit.edu>
List: port-mac68k
Date: 09/30/1998 07:47:23
On Wed, 30 Sep 1998, Steve Revilak wrote:

> Honest, this is not a stupid question....I just don't know the answer...
> 
> I'm working with a program author to attempt to fix a few things.  Having
> built a 'debug' version, I'm having trouble capture the debug info.  Using
> 
> >> and
> 
> | tee
> 

I often times to this:

sh
./program_name 2>&1 | tee logfile

that puts both stdout and stderr together and displays on the screen as
well as dumping to 'logfile'

-Dan