ruby 的 GetOptLong 可以处理选项参数中的空格吗?

发布于 2024-12-11 06:24:07 字数 186 浏览 0 评论 0原文

我想做的是在 ruby​​ 脚本中传递一个选项的参数,该选项将是一个 unix 命令。该命令可能(可能会)涉及 grep、管道和可能的许多其他内容。本质上,我想知道的是,是否可以设置 GetOptLong 选项来接受任何字符作为参数。就其价值而言,我不能使用 OptionParser,而且可能也不能使用(或无论它被称为什么)。

谢谢, -抢

What I'm trying to do is pass an argument for an option in a ruby script that will be a unix command. The command may (probably will) involve greps, pipes and possible lots of other stuff. Essentially, what I'm wondering is, can a GetOptLong option be setup to accept any character as an argument. For what it's worth, I can't use OptionParser, and probably not slob either (or whatever it's called).

Thanks,
-Rob

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

铁轨上的流浪者 2024-12-18 06:24:07

很确定你可以将你的unix命令作为字符串传递并从你的脚本中执行它们..所以像:

#getoptlong.rb

require 'getoptlong'

opts = GetoptLong.new(
  [ '--unix', GetoptLong::OPTIONAL_ARGUMENT ]
)

opts.each do |opt, arg|
  case opt
    when '--unix'
      puts `#{arg}`
  end
end

并用类似的东西执行脚本:

ruby getOptLong.rb --unix "netstat -an | grep '61613'"

Pretty sure you can just pass in your unix commands as a string and execute them from within your script.. so something like:

#getoptlong.rb

require 'getoptlong'

opts = GetoptLong.new(
  [ '--unix', GetoptLong::OPTIONAL_ARGUMENT ]
)

opts.each do |opt, arg|
  case opt
    when '--unix'
      puts `#{arg}`
  end
end

and execute the script with something like:

ruby getOptLong.rb --unix "netstat -an | grep '61613'"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文