Help for this page

Select Code to Download


  1. or download this
    $SIG{__DIE__} = sub {
        return if $^S;  # inside eval
        # write to log:
        ...
    };
    
  2. or download this
    {
        local $SIG{__DIE__};
    ...
        # oops!
        ... 
    }