- or download this
{
local $SIG{HUP} = 'IGNORE';
kill HUP => -$$;
}
- or download this
#!/opt/perl/bin/perl
use 5.012;
...
}
say "A end";
- or download this
#!/opt/perl/bin/perl
use 5.012;
...
sleep 30;
say " B end";
- or download this
#!/opt/perl/bin/perl
use 5.012;
...
say " C start";
sleep 30;
say " C exit";
- or download this
$ ./a.pl
A start
...
A waiting for lost children
A reaped child 20683
A end