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>

Examine what is said, not who speaks.
"Efficiency is intelligent laziness." -David Dunham
"Think for yourself!" - Abigail
"Memory, processor, disk in that order on the hardware side. Algorithm, algorithm, algorithm on the code side." - tachyon