http://qs321.pair.com?node_id=1138555


in reply to Re^2: Perl migration hp-ux -> Linux
in thread Perl migration hp-ux -> Linux

If stepping through the program in Perl debugger doesn't help, try opening STDOUT/STDERR to some log file ("/tmp/$$.log", for example) or writing a __DIE__ signal handler:

sub { return unless defined $^S; # bail out if it's a parser error open my $log, ">/tmp/crash@{[time]}_$$.log"; print $log @_; }