Help for this page
my $EXIT = 0; $SIG{INT} = sub{ warn "Caught Zap!\n"; $EXIT = 1 }; ... sleep 2; do{ warn "Graceful exit!\n"; exit } if $EXIT; }