Search found 1 match

by haste
24 Apr 2018 04:51
Forum: DOS Batch Forum
Topic: Counting in batch files
Replies: 1
Views: 2382

Counting in batch files

Hi guys, I'm a beginner, so please bare with me. I want to count in a loop. This works fine. I use this code: for /l %%a in (1,1,100) do ( curl "https://www.justadomain.com/500%%a" -o "500%%a.html" timeout 5 > NUL ) I'm fetching the pages 5001 until 5009 correctly, but after that it starts going to ...