本文简要介绍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 Generator模块用法及代码示例
- Ruby Generic.host用法及代码示例
- Ruby GemDependencyAPI.group用法及代码示例
- Ruby Generic.hostname用法及代码示例
- Ruby Generic.query=用法及代码示例
- Ruby Generic.normalize用法及代码示例
- Ruby Generic.select用法及代码示例
- Ruby Generic.fragment=用法及代码示例
- Ruby Generic.path用法及代码示例
- Ruby Generic.route_to用法及代码示例
- Ruby Generic.merge!用法及代码示例
- Ruby GemDependencyAPI.gem用法及代码示例
- Ruby GemDependencyAPI.gemspec用法及代码示例
- Ruby Generic.hostname=用法及代码示例
- Ruby Generic.route_from用法及代码示例
- Ruby Generic.merge用法及代码示例
- Ruby GemDependencyAPI类用法及代码示例
- Ruby Generic.query用法及代码示例
- Ruby Generic.port用法及代码示例
- Ruby Generic.password=用法及代码示例
- Ruby Generic.fragment用法及代码示例
- Ruby Generic.scheme用法及代码示例
- Ruby Generic.scheme=用法及代码示例
- Ruby Generic.host=用法及代码示例
- Ruby Generic.hierarchical?用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 GetoptLong类。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。