Re: Copying stderr to stdout

2003-09-29 Thread Ronald Landheer-Cieslak
On Fri, Sep 26, 2003 at 05:28:16PM +0200, Øyvind Harboe wrote: > I was having a bit of trouble copying stderr to stdout, e.g. > > $ ls 2>&1 lkajsdflkjasdflkj >ll > ls: lkajsdflkjasdflkj: No such file or directory > > I would have expected the error message to end up

Re: Copying stderr to stdout

2003-09-26 Thread Igor Pechtchanski
On Fri, 26 Sep 2003, Øyvind Harboe wrote: > I was having a bit of trouble copying stderr to stdout, e.g. > > $ ls 2>&1 lkajsdflkjasdflkj >ll > ls: lkajsdflkjasdflkj: No such file or directory > > I would have expected the error message to end up in "ll". &

Copying stderr to stdout

2003-09-26 Thread Øyvind Harboe
I was having a bit of trouble copying stderr to stdout, e.g. $ ls 2>&1 lkajsdflkjasdflkj >ll ls: lkajsdflkjasdflkj: No such file or directory I would have expected the error message to end up in "ll". If I place "2>&1" at the end of the line it works. Is