stat >> num â fixnum
Instance Public methods
Shift the bits in stat right num places.
fork { exit 99 } #=> 26563
Process.wait #=> 26563
$?.to_i #=> 25344
$? >> 8 #=> 99
Shift the bits in stat right num places.
fork { exit 99 } #=> 26563
Process.wait #=> 26563
$?.to_i #=> 25344
$? >> 8 #=> 99
Please login to continue.