当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby GetoptLong类用法及代码示例


本文简要介绍ruby语言中 GetoptLong类 的用法。

GetoptLong 类允许您解析命令行选项,类似于 GNU getopt_long() C 库调用。但是请注意, GetoptLong 是纯 Ruby 实现。

GetoptLong 允许 POSIX 风格的选项,如 --file 以及单字母选项,如 -f

空选项--(两个减号)用于结束选项处理。如果选项具有可选参数,这一点尤其重要。

下面是一个简单的用法示例:

require 'getoptlong'

opts = GetoptLong.new(
  [ '--help', '-h', GetoptLong::NO_ARGUMENT ],
  [ '--repeat', '-n', GetoptLong::REQUIRED_ARGUMENT ],
  [ '--name', GetoptLong::OPTIONAL_ARGUMENT ]
)

dir = nil
name = nil
repetitions = 1
opts.each do |opt, arg|
  case opt
    when '--help'
      puts <<-EOF
hello [OPTION] ... DIR

-h, --help:
   show help

--repeat x, -n x:
   repeat x times

--name [name]:
   greet user by name, if name not supplied default is John

DIR: The directory in which to issue the greeting.
      EOF
    when '--repeat'
      repetitions = arg.to_i
    when '--name'
      if arg == ''
        name = 'John'
      else
        name = arg
      end
  end
end

if ARGV.length != 1
  puts "Missing dir argument (try --help)"
  exit 0
end

dir = ARGV.shift

Dir.chdir(dir)
for i in (1..repetitions)
  print "Hello"
  if name
    print ", #{name}"
  end
  puts
end

示例命令行:

hello -n 6 --name -- /tmp

相关用法


注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 GetoptLong类。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。