mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* sample/optparse/subcommand.rb: a sample for sub commands like
cvs. contributed by Minero Aoki. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7532 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
12790683f3
commit
0e01d2883b
2 changed files with 24 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Sat Dec 11 13:08:28 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* sample/optparse/subcommand.rb: a sample for sub commands like
|
||||
cvs. contributed by Minero Aoki.
|
||||
|
||||
Fri Dec 10 08:39:48 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/socket/socket.c (sock_listen): get OpenFile just before calling
|
||||
|
|
19
sample/optparse/subcommand.rb
Executable file
19
sample/optparse/subcommand.rb
Executable file
|
@ -0,0 +1,19 @@
|
|||
#! /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?
|
Loading…
Reference in a new issue