这基本上就是我想要的批处理文件。每当我按任意键跳过“暂停”时,我希望能够重新运行“Do Stuff”。
while(true){
Do Stuff
Pause
}
看起来批处理中只有
for
循环可用,没有 while
循环。那么如何创建无限循环?
您需要无限或更多增量才能达到 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 个空循环。
help GOTO
:again
do it
goto again
:LOOP
timeout /T 1 /NOBREAK
::pause or sleep x seconds also valid
call myLabel
if not ErrorLevel 1 goto :LOOP
这样你也可以处理错误
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 或空输入。