I am trying to download flurry exception logs using the following command.
curl --cookie ./flurry.jar -k -L "https://dev.flurry.com/exceptionLogsCsv.do?projectID=49999&versionCut=versionsAll&intervalCut=allTime&direction=1&offset=[0-100:10]" --output "exception#1.csv"
It works fine and it downloads the csv files based on the offset(10,20,30 etc). I would like to insert a delay between each request. Is it possible to do that in CURL?
Using bash shell (Linux) :
It is an infinite loop, and the delay is given by the
sleepcommand.Edit. On Windows machine, you can do this trick instead :
The
sleepcommand is not available on Windows. But you can usepingto “emulate” it. Just replace the XX above with the number of seconds you want to delay.