in reply to Re: Debugging My Perl
in thread Debugging My Perl
I am going to assume you are on Win32 in which case redirection of STDERR does not work...
Really?
P:\test>perl -le"warn 'via STDERR'; print 'via STDOUT';" 1>junk 2>&1 P:\test>type junk via STDERR at -e line 1. via STDOUT P:\test>
|
|---|