如何从Ruby程序内部调用Shell命令?然后如何将这些命令的输出返回到Ruby?
Open3
(docs)是大多数情况下IMO的最佳选择,但是在Ruby的旧版本上,它不会遵循已修改的PATH
(bugs.ruby-lang.org/issues/8004),并且取决于您传递args的方式(具体来说是,如果您在非关键字中使用opts哈希),则可能会中断。但是,如果遇到这种情况,那么您正在做一些相当高级的事情,您可以通过阅读的实现来弄清楚该怎么做Open3
。
如何从Ruby程序内部调用Shell命令?然后如何将这些命令的输出返回到Ruby?
Open3
(docs)是大多数情况下IMO的最佳选择,但是在Ruby的旧版本上,它不会遵循已修改的PATH
(bugs.ruby-lang.org/issues/8004),并且取决于您传递args的方式(具体来说是,如果您在非关键字中使用opts哈希),则可能会中断。但是,如果遇到这种情况,那么您正在做一些相当高级的事情,您可以通过阅读的实现来弄清楚该怎么做Open3
。
Answers:
该说明基于我的一个朋友的注释Ruby脚本。如果要改进脚本,请随时在链接上进行更新。
首先,请注意,当Ruby调用shell时,通常调用/bin/sh
,而不是 Bash。并非/bin/sh
所有系统都支持某些Bash语法。
以下是执行Shell脚本的方法:
cmd = "echo 'hi'" # Sample string that can be used
Kernel#`
,通常称为反引号– `cmd`
就像许多其他语言一样,包括Bash,PHP和Perl。
返回shell命令的结果(即标准输出)。
文件:http : //ruby-doc.org/core/Kernel.html#method-i-60
value = `echo 'hi'`
value = `#{cmd}`
内置语法 %x( cmd )
继x
字符是一个分隔符,它可以是任何字符。如果分隔符是字符中的一个(
,[
,{
,或<
,文字由字符直到匹配的结束分隔符,以嵌套定界符对帐户。对于所有其他定界符,文字包括直到下一个定界符出现的字符。#{ ... }
允许字符串插值。
像反引号一样,返回shell命令的结果(即标准输出)。
文件:https://docs.ruby-lang.org/en/master/syntax/literals_rdoc.html#label-Percent+Strings
value = %x( echo 'hi' )
value = %x[ #{cmd} ]
Kernel#system
在子shell中执行给定命令。
返回true
是否找到命令并成功运行,false
否则返回。
文件:http : //ruby-doc.org/core/Kernel.html#method-i-system
wasGood = system( "echo 'hi'" )
wasGood = system( cmd )
Kernel#exec
通过运行给定的外部命令来替换当前进程。
不返回任何值,当前进程将被替换且永远不会继续。
文件:http : //ruby-doc.org/core/Kernel.html#method-i-exec
exec( "echo 'hi'" )
exec( cmd ) # Note: this will never be reached because of the line above
以下是一些额外的建议:
$?
与一样$CHILD_STATUS
,如果使用反引号system()
或,则访问上一次系统执行的命令的状态%x{}
。然后,您可以访问exitstatus
和pid
属性:
$?.exitstatus
有关更多阅读,请参阅:
#{cmd}
和logger.info(#{cmd}
)。有什么办法可以记录他们的生产产量?
cmd
。如果给出了多个参数,则该命令不能与外壳一起运行(与Kernel:的语义相同:: exec和Kernel :: system)”。
这是基于“ 何时使用在Ruby中启动子流程的每种方法 ”的流程图。另请参见“ 欺骗应用程序以使其标准输出是终端而不是管道 ”。
Kernel
并且Process
用途最广泛。它与或多或少相同PTY.spawn()
,但更为通用。)
我喜欢这样做的方式是使用%x
文字,这使得在命令中使用引号变得容易(且易于阅读!),如下所示:
directorylist = %x[find . -name '*test.rb' | sort]
在这种情况下,它将用当前目录下的所有测试文件填充文件列表,您可以按预期进行处理:
directorylist.each do |filename|
filename.chomp!
# work with file
end
%x[ cmd ]
向您返回数组?
each' for :String (NoMethodError)
它如何为您工作?我正在使用ruby -v ruby 1.9.3p484 (2013-11-22 revision 43786) [i686-linux]
是否确定从命令中返回了一个数组,以便循环真正起作用?
在我看来,这是关于在Ruby中运行Shell脚本的最佳文章:“在Ruby 中运行Shell命令的6种方法 ”。
如果只需要获取输出,请使用反引号。
我需要像STDOUT和STDERR这样的更高级的东西,所以我使用了Open4 gem。您已在此处说明了所有方法。
%x
语法选项。
spawn
当我发现它时,我已经开始尝试实现自己的方法版本。
我最喜欢的是Open3
require "open3"
Open3.popen3('nroff -man') { |stdin, stdout, stderr| ... }
stdout, stderr, status = Open3.capture3('nroff -man', :stdin_data => stdin)
在这些机制之间进行选择时,需要考虑以下几点:
您可能需要从简单的反引号什么(``) system()
,并IO.popen
以全面的Kernel.fork
/ Kernel.exec
有IO.pipe
和IO.select
。
如果子流程执行时间过长,您可能还想将超时投入混合。
不幸的是,这在很大程度上取决于。
另一种选择:
当你:
您可以使用外壳重定向:
puts %x[cat bogus.txt].inspect
=> ""
puts %x[cat bogus.txt 2>&1].inspect
=> "cat: bogus.txt: No such file or directory\n"
自MS-DOS成立以来,该2>&1
语法就可以在Linux,Mac和Windows上使用。
上面的答案已经很不错了,但是我真的很想分享以下摘要文章:“ 在Ruby中运行Shell命令的6种方法 ”
基本上,它告诉我们:
Kernel#exec
:
exec 'echo "hello $HOSTNAME"'
system
和$?
:
system 'false'
puts $?
反引号(`):
today = `date`
IO#popen
:
IO.popen("date") { |f| puts f.gets }
Open3#popen3
-stdlib:
require "open3"
stdin, stdout, stderr = Open3.popen3('dc')
Open4#popen4
-宝石:
require "open4"
pid, stdin, stdout, stderr = Open4::popen4 "false" # => [26327, #<IO:0x6dff24>, #<IO:0x6dfee8>, #<IO:0x6dfe84>]
如果您确实需要Bash,请按照“最佳”答案中的注释进行操作。
首先,请注意,当Ruby调用shell时,通常调用
/bin/sh
,而不是 Bash。并非/bin/sh
所有系统都支持某些Bash语法。
如果需要使用Bash,bash -c "your Bash-only command"
请在所需的调用方法中插入:
quick_output = system("ls -la")
quick_bash = system("bash -c 'ls -la'")
去测试:
system("echo $SHELL")
system('bash -c "echo $SHELL"')
或者,如果您正在运行现有的脚本文件,例如
script_output = system("./my_script.sh")
Ruby 应该尊重Shebang,但您可以随时使用
system("bash ./my_script.sh")
确保尽管/bin/sh
运行可能会产生一些开销/bin/bash
,但您可能不会注意到。
您还可以使用反引号运算符(`),类似于Perl:
directoryListing = `ls /`
puts directoryListing # prints the contents of the root directory
如果您需要简单的东西,则非常方便。
您要使用哪种方法取决于您要完成的工作。检查文档以获取有关不同方法的更多详细信息。
使用这里的答案并链接到Mihai的答案中,我组成了一个满足这些要求的函数:
另外,如果shell命令成功退出(0)并将任何内容放入STDOUT,则此命令也将返回STDOUT。以这种方式,它不同于system
,true
在这种情况下简单地返回。
代码如下。具体功能是system_quietly
:
require 'open3'
class ShellError < StandardError; end
#actual function:
def system_quietly(*cmd)
exit_status=nil
err=nil
out=nil
Open3.popen3(*cmd) do |stdin, stdout, stderr, wait_thread|
err = stderr.gets(nil)
out = stdout.gets(nil)
[stdin, stdout, stderr].each{|stream| stream.send('close')}
exit_status = wait_thread.value
end
if exit_status.to_i > 0
err = err.chomp if err
raise ShellError, err
elsif out
return out.chomp
else
return true
end
end
#calling it:
begin
puts system_quietly('which', 'ruby')
rescue ShellError
abort "Looks like you don't have the `ruby` command. Odd."
end
#output: => "/Users/me/.rvm/rubies/ruby-1.9.2-p136/bin/ruby"
不要忘记spawn
创建后台进程以执行指定命令的命令。您甚至可以使用Process
类和返回的内容等待其完成pid
:
pid = spawn("tar xf ruby-2.0.0-p195.tar.bz2")
Process.wait pid
pid = spawn(RbConfig.ruby, "-eputs'Hello, world!'")
Process.wait pid
该文档说:此方法类似于,#system
但它不等待命令完成。
Kernel.spawn()
似乎比其他所有选项都通用。
如果您遇到的案例比无法处理的常见案例更为复杂``
,请签出 Kernel.spawn()
。这似乎是普通Ruby提供的用于执行外部命令的最通用/最全面的功能。
您可以使用它来:
在Ruby文档具有很好的足够的例子:
env: hash
name => val : set the environment variable
name => nil : unset the environment variable
command...:
commandline : command line string which is passed to the standard shell
cmdname, arg1, ... : command name and one or more arguments (no shell)
[cmdname, argv0], arg1, ... : command name, argv[0] and zero or more arguments (no shell)
options: hash
clearing environment variables:
:unsetenv_others => true : clear environment variables except specified by env
:unsetenv_others => false : dont clear (default)
process group:
:pgroup => true or 0 : make a new process group
:pgroup => pgid : join to specified process group
:pgroup => nil : dont change the process group (default)
create new process group: Windows only
:new_pgroup => true : the new process is the root process of a new process group
:new_pgroup => false : dont create a new process group (default)
resource limit: resourcename is core, cpu, data, etc. See Process.setrlimit.
:rlimit_resourcename => limit
:rlimit_resourcename => [cur_limit, max_limit]
current directory:
:chdir => str
umask:
:umask => int
redirection:
key:
FD : single file descriptor in child process
[FD, FD, ...] : multiple file descriptor in child process
value:
FD : redirect to the file descriptor in parent process
string : redirect to file with open(string, "r" or "w")
[string] : redirect to file with open(string, File::RDONLY)
[string, open_mode] : redirect to file with open(string, open_mode, 0644)
[string, open_mode, perm] : redirect to file with open(string, open_mode, perm)
[:child, FD] : redirect to the redirected file descriptor
:close : close the file descriptor in child process
FD is one of follows
:in : the file descriptor 0 which is the standard input
:out : the file descriptor 1 which is the standard output
:err : the file descriptor 2 which is the standard error
integer : the file descriptor of specified the integer
io : the file descriptor specified as io.fileno
file descriptor inheritance: close non-redirected non-standard fds (3, 4, 5, ...) or not
:close_others => false : inherit fds (default for system and exec)
:close_others => true : dont inherit (default for spawn and IO.popen)
给定像这样的命令attrib
:
require 'open3'
a="attrib"
Open3.popen3(a) do |stdin, stdout, stderr|
puts stdout.read
end
我发现虽然这种方法不如让人难忘
system("thecommand")
要么
`thecommand`
在反引号中,与其他方法相比,此方法的优点是反引号似乎不让我puts
运行/存储要运行的命令的命令存储在变量中,并且system("thecommand")
似乎不让我获取输出,而此方法使我可以同时执行这两项操作,并且可以独立访问stdin,stdout和stderr。
请参阅“ 在ruby中执行命令 ”和Ruby的Open3文档。
这并不是真正的答案,但也许有人会发现它有用:
在Windows上使用TK GUI时,您需要从rubyw调用shell命令,您总是会在不到一秒钟的时间内弹出一个烦人的CMD窗口。
为了避免这种情况,您可以使用:
WIN32OLE.new('Shell.Application').ShellExecute('ipconfig > log.txt','','','open',0)
要么
WIN32OLE.new('WScript.Shell').Run('ipconfig > log.txt',0,0)
两者都将ipconfig
输出存储在内部log.txt
,但是不会出现任何窗口。
您将需要require 'win32ole'
在脚本中。
system()
,exec()
并且spawn()
在使用TK和rubyw时都会弹出该烦人的窗口。