mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9 lines
286 B
Ruby
9 lines
286 B
Ruby
|
require 'optparse'
|
||
|
parser = OptionParser.new
|
||
|
parser.on('-x', '--xxx', 'Short and long, no argument')
|
||
|
parser.on('-yYYY', '--yyy', 'Short and long, required argument')
|
||
|
parser.on('-z [ZZZ]', '--zzz', 'Short and long, optional argument')
|
||
|
options = {}
|
||
|
parser.parse!(into: options)
|
||
|
p options
|