I'm a beginner, so please bare with me. I want to count in a loop. This works fine. I use this code:
Code: Select all
for /l %%a in (1,1,100) do (
curl "https://www.justadomain.com/500%%a" -o "500%%a.html"
timeout 5 > NUL
)
How can I start my counting with 001 and increase this with 1 (002, 003, 004)?
Thanks in advance!
Haste