Last active
March 27, 2022 16:37
-
-
Save ashutoshsahoo/eea5b5400d69aaf9582b0317141cad25 to your computer and use it in GitHub Desktop.
Curl URL recursively from bash shell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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