在正在运行的命令中包含计数变量的批处理文件

问题描述 投票:0回答:1

我正在尝试构建一个批处理文件以根据计数运行一定次数,并将计数插入到类似参数的命令中:

set count=5
dountil count=26
count=count+1
c:\path\file.exe someparamenters fileCOUNT someotherparameters fileCOUNT

该命令将运行一个命令,其中包括这样计数的文件名:

c:\path\file.exe someparamenters file5 someotherparameters file5  
c:\path\file.exe someparamenters file6 someotherparameters file6  
c:\path\file.exe someparamenters file7 someotherparameters file7  
etc etc

我不知道如何在将计数插入命令时运行命令。

windows batch-file
1个回答
0
投票
set count=5
set dountil=26
for /L %%e in (%count%,1,%dountil%) do c:\path\file.exe someparamenters file%%e someotherparameters file%%e

请参阅

for /?
来自 SO 的提示或无休止的示例以获取文档。

© www.soinside.com 2019 - 2024. All rights reserved.