使用 Perl 的“IPC::System::Simple:runx”时如何避免打印到 STDOUT?

发布于 2024-09-24 00:28:59 字数 331 浏览 20 评论 0原文

我正在使用 IPC::System::Simple:runx 执行系统命令并因意外返回值而死亡。问题是命令输出被打印到 shell。

  1. 我怎样才能避免打印这个 输出?
  2. 如何避免打印此输出 但将其放入 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.

  1. How can I avoid printing this
    output?
  2. 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 技术交流群。

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

发布评论

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

评论(2

演出会有结束 2024-10-01 00:28:59

捕获( ) 命令?或 capturex()。

引自链接:

异常处理

在命令返回意外状态的情况下,运行和捕获都会抛出异常,如果没有捕获异常,则会因错误而终止程序。

捕获异常很容易:

eval {
    run("cat *.txt");
};

if ($@) {
    print "Something went wrong - $@\n";
}

有关更多详细信息,请参阅下面的诊断部分。

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:

eval {
    run("cat *.txt");
};

if ($@) {
    print "Something went wrong - $@\n";
}

See the diagnostics section below for more details.

心的位置 2024-10-01 00:28:59

如果一个模块确实表现得非常糟糕并且直接打印到 STDOUT,那么您始终可以将 STDOUT 重定向到其他内容。这是一种 hack,但有些模块需要它。

# Save STDOUT for restore later
open(OLD_STDOUT, ">>&STDOUT");
open(STDOUT, ">/some/file/or/dev/null");
# call your module
# Restore STDOUT
open(STDOUT, ">>&OLD_STDOUT");

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.

# Save STDOUT for restore later
open(OLD_STDOUT, ">>&STDOUT");
open(STDOUT, ">/some/file/or/dev/null");
# call your module
# Restore STDOUT
open(STDOUT, ">>&OLD_STDOUT");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文