Ruby 2.6.0 リファレンスマニュアル > ライブラリ一覧 > Englishライブラリ > Kernelモジュール > $ARGV

variable $ARGV

$ARGV -> [String][permalink][rdoc] [added by English]

$* の別名

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

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