如何使用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.