cURL with Bash Cheat Sheet

Reset Git Branch Commits

cURL with Bash Cheat Sheet for use with bash shell.

for each

for ((i=1;i<=100;i++)); do curl -k "http://URL"; done;

infinite (curl)

while true; do curl -k "http://URL"; done;

infinite (busybox)

while true; do wget -q -O- http://URL; done
Marcin Narloch

Marcin Narloch

Creative and out-of-the-box thinker with strong interests and knowledge in technology and innovation.
Reset Git Branch Commits Previous post GCP Authentication Cheat Sheet
Reset Git Branch Commits Next post MongoDb Cheat Sheet

Leave a Reply

Your email address will not be published. Required fields are marked *