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
cURL with Bash Cheat Sheet for use with bash shell.
for ((i=1;i<=100;i++)); do curl -k "http://URL"; done;
while true; do curl -k "http://URL"; done;
while true; do wget -q -O- http://URL; done