The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# 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;