IPC::System::Simple 可以捕获 STDERR 吗?
我想从我的 Perl 代码中调用一个脚本并捕获它的 STDERR 和 STDOUT 组合在一起。
我通常使用 IPC::System::Simple
中的 capture
但 ti 似乎不允许捕获 STDERR。
I would like to invoke a script from my Perl code and capture its STDERR and STDOUT combined together.
I usually use capture
from IPC::System::Simple
but ti doesn't seem to allow capturing of STDERR.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
2>&1
将 STDERR(文件描述符 2)重定向到 STDOUT(文件描述符 1)。来自 perlop 上的
qx//
运算符:You can redirect STDERR (file descriptor 2) to STDOUT (file descriptor 1) with
2>&1
.From perlop on the
qx//
operator:在 POSIX 系统上,您可以执行以下操作。在 Windows 上,这适用于 cygwin。
但是,如果您想区分 STDERR 行和 STDOUT 行,也许您需要使用 IPC::Open3 或错误命名的 IPC::Open3::Util。
On a POSIX system, you can do the following. On Windows, this would work in cygwin.
However, if you want to distinguish STDERR lines from STDOUT lines, maybe you need to use IPC::Open3 or the mis-named IPC::Open3::Util.