For Bucle Batch


/ Published in: DOS Batch
Save to your folder(s)



Copy this code and paste it in your HTML
  1. @echo off
  2. set inicio=0
  3. set fin=10000
  4. :batchfor
  5. if %inicio% GTR %fin% (echo terminamos & pause > nul) else (echo Hola %inicio% & set /a inicio= %inicio% + 1 & goto batchfor)

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.