Skip to content

Instantly share code, notes, and snippets.

@ashutoshsahoo
Last active March 27, 2022 16:37
Show Gist options
  • Save ashutoshsahoo/eea5b5400d69aaf9582b0317141cad25 to your computer and use it in GitHub Desktop.
Save ashutoshsahoo/eea5b5400d69aaf9582b0317141cad25 to your computer and use it in GitHub Desktop.
Curl URL recursively from bash shell
for i in {1..10}; do echo && curl --ssl-no-revoke "https://www.google.com" && sleep 1; done
for i in $(seq 1 100); do curl -s -o /dev/null "http://localhost:8080"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment