To handle positional parameters using OptionParser, first parse the switches using OptionParser and then fetch the remaining positional arguments from ARGV:
# optparse-positional-arguments.rb
require 'optparse'
options = {}
OptionParser.new do |opts|
opts.banner = "Usage: #{__FILE__} [command] [options]"
opts.on("-v", "--verbose", "Run verbosely") do |v|
options[:verbose] = true
end
opts.on("--list x,y,z", Array, "Just a list of arguments") do |list|
options[:list] = list
end
end.parse!
To handle positional parameters using OptionParser, first parse the switches using OptionParser and then fetch the remaining positional arguments from ARGV:
On executing the script:
The
dothis
ordothat
commands can be anywhere. Theoptions
hash andARGV
remains the same regardless: