- 论坛徽章:
- 145
|
本帖最后由 jason680 于 2014-04-09 15:10 编辑
回复 1# Casper1314
divided by 256 to get answer
my $result = system("test.sh") >>8;
$ perldoc -f system
system LIST
system PROGRAM LIST
Does exactly the same thing as "exec LIST", except that a fork is
done first and the parent process waits for the child process to
exit.
...
If you'd like to manually inspect "system"'s failure, you can
check all possible failure modes by inspecting $? like this:
if ($? == -1) {
print "failed to execute: $!\n";
}
elsif ($? & 127) {
printf "child died with signal %d, %s coredump\n",
($? & 127), ($? & 128) ? 'with' : 'without';
}
else {
printf "child exited with value %d\n", $? >> 8;
}
|
|