如何在Windows批处理文件中创建无限循环?

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

这基本上就是我想要的批处理文件。每当我按任意键跳过“暂停”时,我希望能够重新运行“Do Stuff”。

while(true){
    Do Stuff
    Pause
}

看起来批处理中只有

for
循环可用,没有
while
循环。那么如何创建无限循环?

windows loops batch-file infinite-loop
6个回答
354
投票

使用好(?)老

goto
怎么样?

:loop

echo Ooops

goto loop

另请参阅this以获得更有用的示例。


146
投票

单行命令中的无限循环,可在cmd

窗口中使用:

FOR /L %N IN () DO @echo Oops

enter image description here


75
投票
真正的无限循环,从 1 数到 10,增量为 0。

您需要无限或更多增量才能达到 10。

您也可以使用缩写形式:

for ... in () do


for /L %%n in (1,0,10) do ( echo do stuff rem ** can't be leaved with a goto (hangs) rem ** can't be stopped with exit /b (hangs) rem ** can be stopped with exit rem ** can be stopped with a syntax error call :stop ) :stop call :__stop 2>nul :__stop () creates a syntax error, quits the batch
如果您需要真正的无限循环,这可能很有用,因为它比 

goto :loop

 版本快得多,因为 for 循环在启动时会完全缓存一次。

** 伪无限 **

如果您需要一个快速循环(那么您不应该使用 GOTO),但循环应该是可破坏的,则可以使用嵌套循环。

@echo off setlocal EnableDelayedExpansion set cnt=0 for /L %%L in (0 1 256) do for /L %%L in (0 1 256) do for /L %%L in (0 1 256) do for /L %%L in (0 1 256) do for /L %%L in (0 1 256) do for /L %%L in (0 1 256) do ( set /a cnt+=1 echo Loop !cnt! if !cnt! == 10 goto :break ) :break
它循环 2⁴⁸ (=281474976710656) 次,但如果 goto 中断循环,则最多需要 1536 个空循环。


23
投票
阅读

help GOTO



并尝试

:again do it goto again
    

7
投票
另一种更好的方法:

:LOOP timeout /T 1 /NOBREAK ::pause or sleep x seconds also valid call myLabel if not ErrorLevel 1 goto :LOOP
这样你也可以处理错误


1
投票
这是使用循环的示例:

echo off cls :begin set /P M=Input text to encode md5, press ENTER to exit: if %M%==%M1% goto end echo.|set /p ="%M%" | openssl md5 set M1=%M% Goto begin
当我需要在 Windows 上将任何消息加密为 md5 哈希值(需要 openssl)时,这是我使用的简单批处理,并且程序会忠实地重复自身,除非给定 Ctrl+C 或空输入。

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.