in reply to Re^3: ActivePerl exit codesin thread ActivePerl exit codes
perl script.pl 2>>error.log [download]
I know next to nothing about dos/windows, so this might not work. try it. otherwise put
BEGIN { open STDERR,">>","error.log" or die "Can't open error.log: $!"; } [download]