如何捕获已将其重定向到 /dev/null 的正在运行的进程的标准输出

发布于 2024-12-02 17:25:09 字数 309 浏览 0 评论 0原文

可能的重复:
进程如何拦截标准输出Linux 上另一个进程的 stderr 和 stderr?

该进程已经在运行,并且所有 0、1、2 都重定向到 /dev/null,如何恢复 stdout?

谢谢,

Possible Duplicate:
How can a process intercept stdout and stderr of another process on Linux?

The process is already running and has all 0, 1, 2 redirected to /dev/null, how can I restore the stdout?

Thanks,

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

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

发布评论

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

评论(1

故事未完 2024-12-09 17:25:09

分析...

可能性 1:您想要捕获重定向的输出。你运气不好。
可能性 2:您想要捕获将被重定向的输出。调试注入并调用 dup2。
可能性3:你就是过程。也许尝试 /dev/tty

Analyzing ...

Possibility 1: you want to capture output that was redirected. You're out of luck.
Possibility 2: you want to capture output that will be redirected. Debug inject and call dup2.
Possibility 3: you are the process. Maybe try /dev/tty

.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文