Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just read the comparison of PHP, Perl, Ruby and Python

http://hyperpolyglot.org/scripting

and saw the following code sample.

files = `ls -l /tmp`
unless $?.success?
  raise "ls failed"
end

files = %x(ls)
unless $?.success?
   raise "ls failed"
end

I was wondering what $? stands for....

share|improve this question

2 Answers

up vote 3 down vote accepted

$? contains the last executed command's exit code. Which can be accessed as $?.exitstatus

share|improve this answer

$? means exit status of last executed child process

share|improve this answer
-1 Not all $x things are global variables. For example $1 isn't global. – Andrew Grimm Feb 29 '12 at 22:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.