Re: Can not mix output of STDERR and STDOUT

2008-07-17 Thread FixReader
On Jul 17, 9:24 pm, [EMAIL PROTECTED] (Yitzle) wrote: > On Wed, Jul 16, 2008 at 9:01 PM, <[EMAIL PROTECTED]> wrote: > > Hi experts > > When I am using STDERR and STDOUT for mixed output, I found a problem. > > Output of STDERR and STDOUT can not be mixed. > > Here is the snippet. > > > ###

Re: Can not mix output of STDERR and STDOUT

2008-07-17 Thread yitzle
On Wed, Jul 16, 2008 at 9:01 PM, <[EMAIL PROTECTED]> wrote: > Hi experts > When I am using STDERR and STDOUT for mixed output, I found a problem. > Output of STDERR and STDOUT can not be mixed. > Here is the snippet. > > # > print STDOUT "This is STDOUT\n"; > pr

Can not mix output of STDERR and STDOUT

2008-07-16 Thread FixReader
Hi experts When I am using STDERR and STDOUT for mixed output, I found a problem. Output of STDERR and STDOUT can not be mixed. Here is the snippet. # print STDOUT "This is STDOUT\n"; print STDERR "This is STDERR\n"; print STDOUT "This is STDOUT\n";