我在 Ruby 中使用 Docopt 来解析我的命令选项,稍后在脚本中我使用gets.chomp
. 问题是,在 Docopt 使用 解析之后,运行程序的所有参数仍然留在 ARGF 中options = Docopt::docopt(doc)
,并且在尝试从 STDIN 获取之前从 ARGF 执行获取命令。
我试图清除 ARGF,但ARGF.gets
由于某种原因试图将输入作为命令运行。我认为清除 ARGF 或使用其他输入法都可能是解决方案,但我还没有找到任何东西。我不得不想象我不是第一个尝试在 Ruby 中使用 Docopt 获取交互式命令行输入的人,所以我希望答案就在那里。
对于那些想要它的人来说,还有更多代码:
#!/usr/bin/ruby
require 'docopt'
doc=<<eos
Usage:
account_creator.rb --noldap [options]
Options:
-h, --help Show help page
-l, --ldap
-n, --noldap
-s SERVER With or without http[s]://, followed by port
--ad
--od
-d NUM
-u USER
-p PASS
-o OUTPUT-FILE Default behavior is to append output to file if it exists
eos
options = {}
begin
options = Docopt::docopt(doc)
rescue Docopt::Exit => e
puts e.message
exit 1
end
if options['-u']
username = options['-u']
else
while username.eql? '' or username == nil
puts "Enter Username:"
username = Kernel.gets.chomp.strip
end
end