The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# trivial external command to wait and then exit
# see  t/24c-kill.t  and  t/24d-kill.t
$SIG{TERM} = $SIG{QUIT} = sub { 
    exit 255;
};
sleep 15;