使用 perl 在 Windows 中复制 cmd.exe 窗口的内容
我试图在 Windows 中使用 perl 将 cmd.exe 的内容复制到文本文件。 有什么简单的方法可以做到这一点吗?
Im trying to copy the content of cmd.exe to a text file using perl in windows.
Is there any simple way to do that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我不太使用 Windows,但我想这与从 Linux 可执行文件获取输出是一样的。
I don't work with windows much, but I would imagine that it is the same as getting output from a linux executable.
您已在控制台窗口中执行了一项任务,现在需要复制这些行?我不确定是否有办法做到这一点。
如果您还没有这样做,您可以使用 Win32::Console 创建一个控制台窗口,并读取和写入该控制台窗口。
You've executed a task in a Console window and now you need to copy those lines? I'm not sure there's a way to do that.
If you haven't already done that, you can use Win32::Console to create a console window, and read and write to that console window.