gpt4 book ai didi

Windows Batch : Search all files in file, 如果行包含 "apple"或 "tomato"回显它

转载 作者:可可西里 更新时间:2023-11-01 13:58:09 24 4
gpt4 key购买 nike

我正在尝试编写一个简单的批处理,它将遍历文件中的每一行,如果该行包含“apples”或“tomato”,则输出该行。

我有这段代码可以找到一个字符串并输出它,但我无法在同一批处理中得到第二个。我还希望它在找到它们时回显这些行。

@echo OFF

for /f "delims=" %%J in ('findstr /ilc:"apple" "test.txt"') do (
echo %%J
)

它需要找到包含“apples”或“tomato”的行我可以使用我需要的两行轻松运行上面的代码,但我需要将这些行相互输出。

例如我需要:

apple
tomato
tomato
apple
tomato
apple
apple

不是:

apple
apple
apple

然后

tomato
tomato
tomato

提前致谢。

最佳答案

Findstr已经为你做了这个:

@findstr /i "tomato apple" *.txt

*.txt 替换为您的通配符(将 tomato apple 替换为您想要的词)。

如果你必须改变输出,那么 for 就派上用场了:

@echo off

for /f %%i in ('findstr /i "tomato apple" *.txt') do @echo I just found a %%i

关于Windows Batch : Search all files in file, 如果行包含 "apple"或 "tomato"回显它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12843731/

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