开发者

What does a dollar sign followed by a question mark mean in Perl?

开发者 https://www.devze.com 2023-03-11 05:17 出处:网络
In the following in Perl script: $a=apple $b=orange if ($?==0) { # do so开发者_高级运维mething } What does $? mean here?This is the status returned by the last system operation, pipe, or backtick

In the following in Perl script:

$a=apple
$b=orange

if ($?==0) {
  # do so开发者_高级运维mething
}

What does $? mean here?


This is the status returned by the last system operation, pipe, or backtick operation. See reference perlvar.


$?, along with all the other "magic" variables, is documented in the perlvar section of the Perl manpages. If you don't actually have a Unix-like setup with the man command, you should also be able to Google for man perlvar.


Others have answered the question about the meaning of $?.

I thought I would also mention that it is also possible to get help on Perl's special variables at the command prompt:

perldoc -v $?

Depending on your shell, you may need to escape the $.

perldoc -h


$? or $CHILD_ERROR (if use English) contains the status of the last backtic (or several means of running a child process from Perl.) See perlvar for a full explanation.

0

精彩评论

暂无评论...
验证码 换一张
取 消