标签: batch-file
我有一个包含类似于此内容的txt文件
[A] something1 something2 [B] anotherthing1 anotherthing2
[A]
something1
something2
[B]
anotherthing1
anotherthing2
等
是否可以从批处理文件中说出类似
if name = B iterate over the b section in the file
我知道如何遍历整个文件
FOR /F %%g in (textfile.txt) do stuff
但我现在不能找到一个部分并使用它