假设我有一些终端命令,如:
sudo mycommand1
mycommand2
#.....
我应该怎么做才能通过Ubuntu中的ruby脚本(不是bash)运行它们?
更新: 我有一个红宝石脚本:
def my_method1()
#calculating something.....
end
def method2(var1, var2)
#how do I sudo mycommand1 and any other Lunix command from here?
end
def method3(var4)
#calculating something2....
end
答案 0 :(得分:1)
您可以执行system
,exec
或将命令放在反引号中。
exec("mycommand")
将替换当前进程,因此在ruby脚本结束时真的只是实用。
system("mycommand")
将创建一个新进程,如果命令成功则返回true,否则返回nil。
如果您需要在Ruby脚本中使用命令的输出,请使用反引号:
response = 'mycommand`
答案 1 :(得分:1)
有很多问题可以回答这个问题。但是,您可以使用system
,exec
,(反引号),%x{}
或使用open3
以多种方式运行命令。我更喜欢使用open3 -
require 'open3'
log = File.new("#{your_log_dir}/script.log", "w+")
command = "ls -altr ${HOME}"
Open3.popen3(command) do |stdin, stdout, stderr|
log.puts "[OUTPUT]:\n#{stdout.read}\n"
unless (err = stderr.read).empty? then
log.puts "[ERROR]:\n#{err}\n"
end
end
如果您想了解有关其他选项的更多信息,可以参考Ruby, Difference between exec, system and %x() or Backticks获取相关文档的链接。
答案 2 :(得分:1)
您可以尝试以下方法:
%x[command]
Kernel.system"command"
run "command"
答案 3 :(得分:0)
使用以下内容制作file.rb
:
#!/path/to/ruby
system %{sudo mycommand1}
system %{mycommand2}
和chmod
具有exec权限的文件(例如755)
你需要在两个命令之间传递变量,一起运行它们:
system %{sudo mycommand1; \
mycommand2}