Road to Rubyist
一人前のRubyistを名乗るために必要な基礎的なトピック群を取り扱う予定。
コマンドライン引数
$0
実行コマンドARGV
引数(配列)
# sample.rb
puts "$0:#{$0}"
ARGV.each_with_index do |arg, i|
puts "ARGV[#{i}]:#{arg}"
end
実行例:
$ ruby sample.rb hoge piyo
$0:sample.rb
ARGV[0]:hoge
ARGV[1]:piyo