0
我需要知道如何和我有什麼對蝙蝠命令調用名爲.txt
for /f %%a in (C:\communitylist.txt) do call :LOOP %%a
:LOOP
start myCommand
timeout 20
goto :LOOP
進入我如何讓它跳到TXT的下一行?
現在它停留在從TXT
的第一行txt文件我對第一行代碼,在第二線和第二碼等
我需要知道如何和我有什麼對蝙蝠命令調用名爲.txt
for /f %%a in (C:\communitylist.txt) do call :LOOP %%a
:LOOP
start myCommand
timeout 20
goto :LOOP
進入我如何讓它跳到TXT的下一行?
現在它停留在從TXT
的第一行txt文件我對第一行代碼,在第二線和第二碼等
只是goto :eof
取代goto :LOOP
,結束你的「子程序」並繼續執行for
命令。
但您創建了一個無限循環。並且goto打破了'FOR'上下文。 – npocmaka 2014-11-22 15:23:46