Re: More/less'ing stderr

2001-04-23 Thread csj
On Tuesday 24 April 2001 08:31, Manuel Reiter wrote: > Hi csj, > > > How can I more/less stderr? A couple of programs I use (e.g. > > cdrecord) use stderr for --help. So my usual method of scrolling > > thru the built-in help ("programfoo --help | more") doesn't work. > > Try "programfoo 2>&1" -- t

Re: More/less'ing stderr

2001-04-23 Thread Manuel Reiter
Hi csj, > How can I more/less stderr? A couple of programs I use (e.g. > cdrecord) use stderr for --help. So my usual method of scrolling thru > the built-in help ("programfoo --help | more") doesn't work. Try "programfoo 2>&1" -- this redirects stderr to stdout, which you can then pipe to less

More/less'ing stderr

2001-04-23 Thread csj
How can I more/less stderr? A couple of programs I use (e.g. cdrecord) use stderr for --help. So my usual method of scrolling thru the built-in help ("programfoo --help | more") doesn't work.