Help for this page

Select Code to Download


  1. or download this
        my ($psyscmd, $fh) = system_command("$bld_cmd 2>&1");
        $global_fh = $fh;
    
  2. or download this
        if ($pid) {
            # Parent
            print STDERR "\e[101m(1a) Parent about to return\e[m\n";
            return $fh;
        }
    
  3. or download this
    my $unused_fh = monitor_build("./fakebuild");
    
  4. or download this
        my $psyscmd = system_command("$bld_cmd 2>&1");
        
    ...
            print STDERR "\e[101m(1a) Parent about to return\e[m\n";
            return $psyscmd;
        }