use sigtrap qw(die untrapped normal-signals error-signals);
You can even combine different handler types in one import list. Here
we use untrapped to specify only the normal
signals for which there is not already a handler installed, then use
any to revert to sigtrap's
default behavior of installing handlers for all signals in the named
list:
use sigtrap qw(
die untrapped normal-signals
stack-trace any error-signals
);