Skip to content

Instantly share code, notes, and snippets.

@maeharin
Created January 17, 2013 05:31
Show Gist options
  • Save maeharin/4553908 to your computer and use it in GitHub Desktop.
Save maeharin/4553908 to your computer and use it in GitHub Desktop.
require 'optparse'
OptionParser.new do |o|
o.on("-r") {puts 'read mode'}
o.on("-w") {puts 'write mode'}
o.on("-e") {puts 'edit mode'}
o.on("-d") {puts 'delete mode'}
end.parse! ARGV
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment