@echo off
cmd /v:no
for /l %%i in (1,1,120) do (
set aa=00
if %%i GTR 9 set aa=0
if %%i GEQ 100 echo IBVolumectl image f:\user\%%i.ibv 0 . f:\game.img>>ibv.bat
if %%i LEQ 99 echo IBVolumectl image f:\user\!aa!%%i.ibv 0 . f:\game.img>>ibv.bat
The problem is that after running it, the for loop statement doesn't execute...
cmd /v:no
for /l %%i in (1,1,120) do (
set aa=00
if %%i GTR 9 set aa=0
if %%i GEQ 100 echo IBVolumectl image f:\user\%%i.ibv 0 . f:\game.img>>ibv.bat
if %%i LEQ 99 echo IBVolumectl image f:\user\!aa!%%i.ibv 0 . f:\game.img>>ibv.bat
The problem is that after running it, the for loop statement doesn't execute...
