如何在ruby中使用反引号开始获得子进程的连续输出

发布于 2024-07-26 03:07:02 字数 145 浏览 7 评论 0 原文

我有一个 ruby​​ 应用程序,它使用反引号将 ant 作为子进程执行。 这工作没有任何问题。 当我 put ant 时,ruby 会等待子进程 ant 完全完成,然后将输出打印到 stdout。 如何让 ruby​​ 连续打印子进程的输出?

I have a ruby application that executes ant as a subprocess using backtick. This works without any problems. When I do puts ant, ruby waits for the subprocess, ant, to finish completely and then prints the output to stdout. How do I get ruby to print the output from the subprocess continuously?

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

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

发布评论

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

评论(1

2024-08-02 03:07:02

您可以使用 IO.popen。

IO.popen("ant") do |output| 
    while line = output.gets do
        # ... maybe puts line? something more interesting?
    end
end

You could use IO.popen.

IO.popen("ant") do |output| 
    while line = output.gets do
        # ... maybe puts line? something more interesting?
    end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文