在Ruby脚本中运行命令行命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Ruby脚本中运行命令行命令相关的知识,希望对你有一定的参考价值。

有没有办法通过Ruby运行命令行命令?我正在尝试创建一个小的Ruby程序,它可以通过'screen','rcsz'等命令行程序拨出和接收/发送。

如果我可以将所有这些与Ruby(mysql后端等)结合在一起,那就太好了。

答案

是。有几种方法:


一个。使用%x或'`':

%x(echo hi) #=> "hi
"
%x(echo hi >&2) #=> "" (prints 'hi' to stderr)

`echo hi` #=> "hi
"
`echo hi >&2` #=> "" (prints 'hi' to stderr)

这些方法将返回stdout,并将stderr重定向到程序。


湾使用system

system 'echo hi' #=> true (prints 'hi')
system 'echo hi >&2' #=> true (prints 'hi' to stderr)
system 'exit 1' #=> nil

如果命令成功,此方法将返回true。它将所有输出重定向到程序。


C。使用exec

fork { exec 'sleep 60' } # you see a new process in top, "sleep", but no extra ruby process. 
exec 'echo hi' # prints 'hi'
# the code will never get here.

这将使用命令创建的进程替换当前进程。


d。 (ruby 1.9)使用spawn

spawn 'sleep 1; echo one' #=> 430
spawn 'echo two' #=> 431
sleep 2
# This program will print "two
one".

此方法不等待进程退出并返回PID。


即使用IO.popen

io = IO.popen 'cat', 'r+'
$stdout = io
puts 'hi'
$stdout = IO.new 0
p io.read(1)
io.close
# prints '"h"'.

此方法将返回表示新进程的输入/输出的IO对象。它也是我所知道的唯一提供程序输入的方法。


F。使用Open3(1.9.2及更高版本)

require 'open3'

stdout,stderr,status = Open3.capture3(some_command)
STDERR.puts stderr
if status.successful?
  puts stdout
else
  STDERR.puts "OH NO!"
end

Open3有几个其他函数可以显式访问两个输出流。它类似于popen,但可以访问stderr。

另一答案

有几种方法可以在Ruby中运行系统命令。

irb(main):003:0> `date /t` # surround with backticks
=> "Thu 07/01/2010 
"
irb(main):004:0> system("date /t") # system command (returns true/false)
Thu 07/01/2010
=> true
irb(main):005:0> %x{date /t} # %x{} wrapper
=> "Thu 07/01/2010 
"

但是如果您需要使用命令的stdin / stdout实际执行输入和输出,您可能需要查看IO::popen方法,该方法专门提供该工具。

另一答案
 folder = "/"
 list_all_files = "ls -al #{folder}"
 output = `#{list_all_files}`
 puts output
另一答案

是的,这肯定是可行的,但实现方法的不同取决于所讨论的“命令行”程序是以“全屏”还是命令行模式运行。为命令行编写的程序倾向于读取STDIN并写入STDOUT。可以使用标准反引号方法和/或system / exec调用在Ruby中直接调用它们。

如果程序在屏幕或vi等“全屏”模式下运行,则方法必须不同。对于这样的程序,您应该寻找“expect”库的Ruby实现。这将允许您编写您希望在屏幕上看到的内容以及当您在屏幕上看到这些特定字符串时要发送的内容。

这不太可能是最好的方法,你应该看看你想要实现的目标,并找到相关的库/ gem,而不是尝试自动化现有的全屏应用程序。例如,“Need assistance with serial port communications in Ruby”处理串行端口通信,如果您希望使用您提到的特定程序实现这一目的,则需要拨打前置光标。

另一答案

最常用的方法是使用Open3这里是上面代码的代码编辑版本,带有一些更正:

require 'open3'
puts"Enter the command for execution"
some_command=gets
stdout,stderr,status = Open3.capture3(some_command)
STDERR.puts stderr
if status.success?
  puts stdout
else
  STDERR.puts "ERRRR"
end

以上是关于在Ruby脚本中运行命令行命令的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Ruby 脚本中为命令 shell 获取环境变量?

ruby

如何在 Ruby 脚本中运行 Rake 任务?

Ruby

如何在命令行上使用相同的命令,通过Ruby shell命令运行app

使用Node.js构建命令行工具