On Tue, May 12, 2015 at 10:13 PM, Deepa Hegde (deepahe) <deep...@cisco.com> wrote:
> Seq 1 30 | parallel –q –j0 wget —no-check-certificate --max-redirects=0 > —http-user=tom —http-password=abcdefhi > “https://192.168.1.2:885/x.auth?id={}” > This is bursty … I would like to do 20000 spread out over 1 hour. How do I > achieve this using parallel ? --delay secs Delay starting next job secs seconds. GNU parallel will pause secs seconds after starting each job. secs can be less than 1 second. You probably want something like --delay 0.180 /Ole