在批处理文件中,我有2个像这样的循环
for /f "tokens=1 delims=_" %%k in (%CurrentDirec%\list.txt) do (
for /f "tokens=1" %%l in (%cd%\pragma.txt) do (
SourceFile.bat %%k %filenamecount% %%l
)
)
我的问题是我将使用for循环调用SourceFile.bat
,但循环应仅在第一个for语句中作为变量%%k
的次数发生。它不应该将源文件.bat称为for循环的组合。
现在它同时调用sourcefile.bat
作为两个for循环的组合。
我还想用{3}参数调用sourcefile.bat
。
提前致谢!!!