Perl - 将命令通过管道传输到另一个命令中

发布于 2024-10-05 10:22:42 字数 145 浏览 6 评论 0原文

简单的问题,

有没有一种方法可以像在 *Nix 命令行中一样通过 perl 将命令通过管道传输到另一个命令?

例如:
免费-m | grep Mem

我怎样才能在 Perl 中进行“管道传输”?

Quick question,

Is there a way to pipe a command into another command via perl like you can in the *Nix command line?

For example:
free -m | grep Mem

How would I be able to do the "piping" in Perl?

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

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

发布评论

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

评论(1

友谊不毕业 2024-10-12 10:22:42

您可以完全像这样调用该命令:

system("free -m | grep Mem");

来自 文档

如果只有一个标量参数,则检查该参数是否有 shell 元字符,如果有,则将整个参数传递到系统的命令 shell 进行解析(在 Unix 平台上为 /bin/sh -c,但在其他平台上有所不同)。如果参数中没有 shell 元字符,则将其拆分为单词并直接传递给 execvp ,这样效率更高。

您可以对调用外部命令的其他方法执行相同的操作,例如 open

open my $fh, "-|", "free -m | grep Mem" or croak "failed to run pipeline";
# and now read from $fh as usual

You can invoke the command exactly like that:

system("free -m | grep Mem");

From the documentation:

If there is only one scalar argument, the argument is checked for shell metacharacters, and if there are any, the entire argument is passed to the system's command shell for parsing (this is /bin/sh -c on Unix platforms, but varies on other platforms). If there are no shell metacharacters in the argument, it is split into words and passed directly to execvp , which is more efficient.

You can do the same with other methods for invoking external commands, like open:

open my $fh, "-|", "free -m | grep Mem" or croak "failed to run pipeline";
# and now read from $fh as usual
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文