るりまサーチ (Ruby 3.1)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.013秒)
トップページ > モジュール:Kernel[x] > バージョン:3.1[x] > クエリ:stat[x] > クエリ:dev[x]

別のキーワード

  1. _builtin stat
  2. csv stat
  3. gc stat
  4. pathname stat

ライブラリ

検索結果

Kernel$$CHILD_STATUS -> Process::Status | nil (18622.0)

$? の別名

$? の別名

require "English"

out = `wget https://www.ruby-lang.org/en/about/license.txt -O - 2>/dev/null`

if $CHILD_STATUS.to_i == 0
print "wget success\n"
out.split(/\n/).each { |line|
printf "%s\n", line
}
else
print "wget failed\n"
end