I would like to execute a command:
curl example.com
multiple times in parallel using GNU parallel. I tried:
parallel -j 3 curl example.com
but it doesn't work.
As @don_crissti points out:
seq 3 | parallel -n0 curl example.com
-n0
-n1
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
asked
10 months ago
viewed
362 times
active