Perl 中系统命令输出的文件句柄
我在 Perl 中执行的系统命令的输出是否有文件句柄/句柄?
Is there a filehandle/handle for the output of a system command I execute in Perl?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我在 Perl 中执行的系统命令的输出是否有文件句柄/句柄?
Is there a filehandle/handle for the output of a system command I execute in Perl?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
下面是在脚本和其他命令之间建立管道的示例,使用
的 3 参数形式打开
:Here's an example of establishing pipes between your script and other commands, using the 3-argument form of
open
:是的,您可以使用这样的管道:
请参阅
open
的文档 了解更多信息,perlipc
了解完整信息管道操作的描述。Yes, you can use a pipe like this:
See the documentation for
open
for more information, andperlipc
for a complete description of pipe operation.