exitstatus

stat.exitstatus â fixnum or nil
Instance Public methods

Returns the least significant eight bits of the return code of stat. Only available if exited? is true.

1
2
3
4
5
6
7
8
9
fork { }           #=> 26572
Process.wait       #=> 26572
$?.exited?         #=> true
$?.exitstatus      #=> 0
 
fork { exit 99 }   #=> 26573
Process.wait       #=> 26573
$?.exited?         #=> true
$?.exitstatus      #=> 99
doc_ruby_on_rails
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.