Ruby Analyzer + Option

I am exploring the parsing option in ruby, referring to this and this . This is my test code:

#!/usr/bin/ruby
require "optparse"

options = {}

optparse = OptionParser.new do |opts|
  opts.banner = "Learning Option parsing in Ruby"

  opts.on("-i", "--ipaddress", "IP address of the server") do |ipaddr|
    options[:ipaddress] =  ipaddr
  end

    opts.on("-u", "--username", "username to log in") do |user|
      options[:username] = user
    end

    opts.on("-p", "--password", "password of the user") do |pass|
      options[:password] = pass
    end
end

optparse.parse!

puts "the IPaddress is #{options[:ipaddress]}" if options[:ipaddress]
puts "the username is #{options[:username]}" if options[:username]
puts "the password is #{options[:password]}" if options[:password]

My intention is to print the wholesale that I pass to the script. However, it does not print the option I am passing, instead it simply says true:

# ruby getops.rb  --ipaddress 1.1.1.1
the IPaddress is true
# ruby getops.rb  --username user1
the username is true
# ruby getops.rb  --password secret
the password is true

Where am I mistaken? I also tried using short options, but the result is the same.

+4
source share
2 answers
# Mandatory argument.
  opts.on("-r", "--require LIBRARY",
          "Require the LIBRARY before executing your script") do |lib|
    options.library << lib
  end

I found this on your first link. Note the "--require LIBRARY".

+3
source

What if you change it to:

opts.on("-i", "--ipaddress IPADDRESS", "IP address of the server") do |ipaddr|
  options[:ipaddress] =  ipaddr
end

Pay attention to IPADDRESSthe second argument.

+6
source

All Articles