Delays between requests in wget

Snochacz picture Snochacz · Mar 3, 2016 · Viewed 13.6k times · Source

I want to download web using wget, but to make it more like a real user I would like to make small random delays between requests. I'm executing wget via cmd.

Answer

A.A picture A.A · Mar 5, 2016

You can add the below code into your command line which adds a ten second wait in between server requests.

-w 10

And you can also include

--random-wait

Into your command line with -w option which will vary the wait by 0.5 and 1.5 times the value you provide here.