从 Perl 调用命令,需要查看输出
我需要从 perl 调用一些 shell 命令。这些命令需要相当长的时间才能完成,因此我想在等待完成时查看它们的输出。
system 函数在完成之前不会给我任何输出。
exec 函数给出输出;但是,它从那时起退出 perl 脚本,这不是我想要的。
我在 Windows 上。有办法做到这一点吗?
I need to call some shell commands from perl. Those commands take quite some time to finish so I'd like to see their output while waiting for completion.
The system function does not give me any output until it is completed.
The exec function gives output; however, it exits the perl script from that point, which is not what I wanted.
I am on Windows. Is there a way to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
反引号,或
qx
命令,在单独的进程并返回输出:如果您希望查看中间输出,请使用
open
创建命令输出流的句柄并从中读取。Backticks, or the
qx
command, run a command in a separate process and returns the output:If you wish to see intermediate output, use
open
to create a handle to the command's output stream and read from it.