mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
0e01d2883b
cvs. contributed by Minero Aoki. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7532 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
19 lines
507 B
Ruby
Executable file
19 lines
507 B
Ruby
Executable file
#! /usr/bin/ruby
|
|
# contributed by Minero Aoki.
|
|
|
|
require 'optparse'
|
|
|
|
parser = OptionParser.new
|
|
parser.on('-i') { puts "-i" }
|
|
parser.on('-o') { puts '-o' }
|
|
|
|
subparsers = Hash.new {|h,k|
|
|
$stderr.puts "no such subcommand: #{k}"
|
|
exit 1
|
|
}
|
|
subparsers['add'] = OptionParser.new.on('-i') { puts "add -i" }
|
|
subparsers['del'] = OptionParser.new.on('-i') { puts "del -i" }
|
|
subparsers['list'] = OptionParser.new.on('-i') { puts "list -i" }
|
|
|
|
parser.order!(ARGV)
|
|
subparsers[ARGV.shift].parse!(ARGV) unless ARGV.empty?
|