Help for this page

Select Code to Download


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