In the following in Perl script:
$a=apple $b=orange if ($?==0) { # do something }
What does $? mean here?
$?
This is the status returned by the last system operation, pipe, or backtick operation. See reference perlvar.