Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is basically what I want in a batch file. I want to be able to re-run "Do Stuff" whenever I press any key to go past the "Pause".

while(true){
    Do Stuff
    Pause
}

Looks like there are only for loops available and no while loops in batch. How do I create an infinite loop then?

share|improve this question
Are you asking about a Windows/DOS batch file? – thkala Mar 30 '11 at 14:12
Yeah, sorry for being vague, I'll make an addendum to the OP. – sooprise Mar 30 '11 at 14:12
+1 ooops, I posted without noticing the other answer! – PA. Mar 30 '11 at 14:30

4 Answers

up vote 35 down vote accepted

How about using good(?) old goto?

:loop

echo Ooops

goto loop

See also this for a more useful example.

share|improve this answer
Cool, it's working! Thanks! – sooprise Mar 30 '11 at 14:15
+1 ooops, I posted without noticing your answer! – PA. Mar 30 '11 at 14:30

A really infinite loop, counting from 1 to 10 with increment of 0.
You need infinite or more increments to reach the 10.

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

This could be usefull if you need a really infinite loop, as it is mcuh faster than a goto :loop version, as a for-loop is cached completly once at startup.

share|improve this answer
Nice because it also works just typing it in at command prompt. for /L %n in (1,0,2) do @echo."hi guys" – Nicholi Jul 9 '12 at 19:36

read help GOTO

and try

:again
do it
goto again
share|improve this answer
+1 for helping out anyway :) – sooprise Mar 30 '11 at 14:35

Here is an example of using the 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

This is the simple batch i use when i need to encrypt any message into md5 hash on Windows(openssl required), and the program would loyally repeat itself except given Ctrl+C or empty input.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.