mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fe72cff487
* More on tutorial: clearer example output https://github.com/ruby/optparse/commit/84dfd92d2a
9 lines
186 B
Ruby
9 lines
186 B
Ruby
require 'optparse'
|
|
parser = OptionParser.new
|
|
parser.on('--xxx') do |value|
|
|
p ['-xxx', value]
|
|
end
|
|
parser.on('--y1%', '--z2#') do |value|
|
|
p ['--y1% or --z2#', value]
|
|
end
|
|
parser.parse!
|