summaryrefslogtreecommitdiff
path: root/sample/getoptlong/argv.rb
blob: 8efcad22ea6fbe7f5715acd48d22b095e287cf04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'getoptlong'

options = GetoptLong.new(
  ['--xxx', GetoptLong::REQUIRED_ARGUMENT],
  ['--yyy', GetoptLong::OPTIONAL_ARGUMENT],
  ['--zzz', GetoptLong::NO_ARGUMENT]
)
puts "Original ARGV: #{ARGV}"
options.each do |option, argument|
  p [option, argument]
end
puts "Remaining ARGV: #{ARGV}"