使用 Perl 的“IPC::System::Simple:runx”时如何避免打印到 STDOUT?
我正在使用 IPC::System::Simple:runx
执行系统命令并因意外返回值而死亡。问题是命令输出被打印到 shell。
- 我怎样才能避免打印这个 输出?
- 如何避免打印此输出 但将其放入 perl 变量中?
更新
3)如果执行失败,如何打印此输出?
I'm using IPC::System::Simple:runx
to execute system commands and die on unexpected return values. The problem is that the commands output is printed to the shell.
- How can I avoid printing this
output? - How can I avoid printing this output
but getting it into a perl variable?
UPDATE
3) How can I print this output iff the execution fails?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
捕获( ) 命令?或 capturex()。
引自链接:
异常处理
在命令返回意外状态的情况下,运行和捕获都会抛出异常,如果没有捕获异常,则会因错误而终止程序。
捕获异常很容易:
有关更多详细信息,请参阅下面的诊断部分。
The capture() command? Or capturex().
Quoted from link:
Exception handling
In the case where the command returns an unexpected status, both run and capture will throw an exception, which if not caught will terminate your program with an error.
Capturing the exception is easy:
See the diagnostics section below for more details.
如果一个模块确实表现得非常糟糕并且直接打印到 STDOUT,那么您始终可以将 STDOUT 重定向到其他内容。这是一种 hack,但有些模块需要它。
If a module does behave very nasty and prints directly to STDOUT you can always redirect STDOUT to something else. This sort of a hack but some modules require it.