I'm trying to parse the command line with the ruby library Trollop.
#!/usr/bin/ruby
require 'net/http'
require 'trollop'
opts = Trollop::options do
opt :src, "src lang", :short => 'i', :type => String
opt :dest, "dest lang", :short => 'o', :type => String
end
opts.each do |key,val|
puts "#{key}: #{val}"
end
print opts["src"]
print opts["dest"]
This is the output:
$ ./translate.rb --src he --dest th
dest_given: true
src: he
dest: th
help: false
src_given: true
nilnil
When printing out the hash with opts.each, I can see there are keys named src and dest, and their values are what I expect. However, why accessing the hash values with opts["src"] return null?