gpt4 book ai didi

command-line - 窗口命令 : How to pipe running program output to FINDSTR and write to file

转载 作者:行者123 更新时间:2023-12-04 00:30:01 25 4
gpt4 key购买 nike

我正在尝试过滤正在运行的程序 (ping) 的输出并将结果写入文件。

在下面的示例中,ping 程序一直运行到按下 CTRL-C:

ping www.google.com -t | findstr "Reply" >> file.txt

结果是创建了“file.txt”,但是内容是空的

另一方面,下面的代码,没有管道到 findstr 在被 CTRL-C 中断时可以工作

ping www.google.com -t >> file.txt

我在这里错过了什么?

最佳答案

控制 findstr 命令的拼写是区分大小写的你可以使用/I 来禁用区分大小写并且不要使用双引号

参数 t 不允许在文件中重定向,因为如果使用带有 Reply 数量的 n 参数文件,管道会在执行 FINDSTR 之前接收结果,等待重放结束以查看结果文件。

ping www.google.com -n 200 | findstr /I reply  >> file.txt

关于command-line - 窗口命令 : How to pipe running program output to FINDSTR and write to file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29150554/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com