Windows批处理文件中的增量变量

时间:2018-04-16 15:27:34

标签: windows batch-file

如何使用Windows Batch增加?

set list=A B C D
set /a "port=1010"

for %%a in (%list%) do (
   echo %%a
   call :increaseby1
   echo %port%
)
:increaseby1
set /a "port+=1"

我的主要目标是迭代所有列表并调用另一个批处理文件,如下所示:

每个列表

dev_appserver.cmd -p [PORT+1] "A"

所以这个其他批次将被调用四次,因为列表是A B C和D.

0 个答案:

没有答案