Below is my script,
When I run the script, everything is ok.
#! /usr/bin/perl âw
print "111\n";
warn "222 \n";
Problem emerges when using the following command line under csh,
$test.pl >& test.log
Where test.log is like:
222
111
However, what I experted is:
111
222
Do you guys have any idea
Thanks a lot.
On Mon, 03 Jan 2005 03:21:24 -0500, Randy W. Sims
<[EMAIL PROTECTED]> wrote:
> Perl Hacker wrote:
> > Below is my script,
> > When I run the script, everything is ok.
> >
> > #! /usr/bin/perl âw
> >
> > print "111\n";
> &