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