Help for this page

Select Code to Download


  1. or download this
    system "( sleep 10; ls -l ) &";
    
  2. or download this
    if ( $pid = fork ) {
        # this is the parent
    ...
    else {
        die "can't fork: $!";
    }