in reply to Re^4: ActivePerl exit codes
in thread ActivePerl exit codes
That should give you something to go on.perl script.pl 2>>error.log
I know next to nothing about dos/windows, so this might not work. try it. otherwise put
at the top of the script.BEGIN { open STDERR,">>","error.log" or die "Can't open error.log: $!"; }
|
|---|