るりまサーチ

最速Rubyリファレンスマニュアル検索!
24件ヒット [1-24件を表示] (0.013秒)
トップページ > クエリ:home[x] > 種類:変数[x]

別のキーワード

  1. dir home
  2. _builtin home
  3. gem set_home
  4. rubygems set_home
  5. installer gem_home

ライブラリ

モジュール

キーワード

検索結果

Kernel$$ARGV -> [String] (13.0)

$* の別名

...$* の別名

require "English"
p $ARGV
# end of sample.rb

ruby sample.rb 31 /home/hoge/fuga.txt
#=> ["31", "/home/hoge/fuga.txt"]...

Kernel$$DEFAULT_INPUT -> IO (7.0)

$< の別名

...$< の別名

require "English"
while line = $DEFAULT_INPUT.gets
p line
end
# end of sample.rb

ruby sample.rb < /etc/passwd
# => "hoge:x:500:501::/home/hoge:/bin/bash\n"
......