summaryrefslogtreecommitdiffstats
path: root/sample/optparse/subcommand.rb
diff options
context:
space:
mode:
author(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-20 14:41:10 +0000
committer(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-20 14:41:10 +0000
commit6763c41be301bffbb2a6e8f9b4eb14d5b9dcfe9b (patch)
tree9baa48b1a2dfad4b0d1d9580248177be8c0e9802 /sample/optparse/subcommand.rb
parente288c1a551ba155a8e82e8556c1a7ae3a9403527 (diff)
downloadruby-6763c41be301bffbb2a6e8f9b4eb14d5b9dcfe9b.tar.gz
ruby-6763c41be301bffbb2a6e8f9b4eb14d5b9dcfe9b.tar.xz
ruby-6763c41be301bffbb2a6e8f9b4eb14d5b9dcfe9b.zip
This commit was manufactured by cvs2svn to create branch 'ruby_1_8'.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/optparse/subcommand.rb')
-rwxr-xr-xsample/optparse/subcommand.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/sample/optparse/subcommand.rb b/sample/optparse/subcommand.rb
new file mode 100755
index 000000000..21c42dd60
--- /dev/null
+++ b/sample/optparse/subcommand.rb
@@ -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?