Skip to content

Instantly share code, notes, and snippets.

@trung85
Forked from g105b/curlpool.sh
Created December 26, 2022 08:08
Show Gist options
  • Save trung85/f434250d76678658b684bdd7a25d510b to your computer and use it in GitHub Desktop.
Save trung85/f434250d76678658b684bdd7a25d510b to your computer and use it in GitHub Desktop.
Pool 100 parallel curl requests at a time
#!/bin/bash
target=${1:-http://example.com}
while true # loop forever, until ctrl+c pressed.
do
for i in $(seq 100) # perfrom the inner command 100 times.
do
curl $target > /dev/null & # send out a curl request, the & indicates not to wait for the response.
done
wait # after 100 requests are sent out, wait for their processes to finish before the next iteration.
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment