前端之家收集整理的这篇文章主要介绍了
如何在ruby中使用反引号开始连续输出子进程,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个
ruby应用程序,使用反引号执行ant作为子进程.这没有任何问题.当我放置ant时,ruby等待子进程,ant,完全完成然后将
输出打印到stdout.如何让ruby连续打印子进程的
输出?
你可以使用IO.popen.
IO.popen("ant") do |output|
while line = output.gets do
# ... maybe puts line? something more interesting?
end
end
原文链接:https://www.f2er.com/ruby/264890.html