Perl - 将命令通过管道传输到另一个命令中
简单的问题,
有没有一种方法可以像在 *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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以完全像这样调用该命令:
来自 文档:
您可以对调用外部命令的其他方法执行相同的操作,例如
open
:You can invoke the command exactly like that:
From the documentation:
You can do the same with other methods for invoking external commands, like
open
: