Skip to content

Instantly share code, notes, and snippets.

@NeilMasters
Created March 20, 2023 08:52
Show Gist options
  • Save NeilMasters/ae55ad73384b55fc49489ea937ddd070 to your computer and use it in GitHub Desktop.
Save NeilMasters/ae55ad73384b55fc49489ea937ddd070 to your computer and use it in GitHub Desktop.
Benchmarking curl speed
!#/bin/bash
I=1
while [ $I -le 500 ]
do
echo $I
curl -I -S https://www.google.com
I=$(( $I + 1 ))
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment