Help for this page

Select Code to Download


  1. or download this
    open( PROC, "| program_a" );
    sleep $n;
    close PROC;
    
  2. or download this
    open( PROC, "| command" )
    
  3. or download this
    $spid = open( SH, "| /bin/sh" );
    select SH; $|++;
    ...
        print "Damn! Lost the kid.\n";
    }
    close SH;