【发布时间】:2013-02-26 14:40:51
【问题描述】:
我想知道,如果某个 IF 语句在其中有效,是否可以跳过读取 FOR /F 循环中的一行? 例如:
FOR /F "tokens=* delims=" %%j in (exclusions.txt) do (
IF %SomethingIDeclaredBefore%==%%j (jump to the next line of the text file) else (echo not equal)
我想不可能增加%%j.
【问题讨论】:
标签: batch-file line counter increment next