在批处理文件中嵌套循环

时间:2014-10-14 13:39:50

标签: windows batch-file cmd

在批处理文件中,我有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

提前致谢!!!

0 个答案:

没有答案