Skip to content

Instantly share code, notes, and snippets.

@fadhlirahim
Created May 17, 2013 03:59
Show Gist options
  • Save fadhlirahim/5596849 to your computer and use it in GitHub Desktop.
Save fadhlirahim/5596849 to your computer and use it in GitHub Desktop.
simple load page time test using curl | grep | awk
for i in {0..10}; do curl -w "time %{time_total}\n" -o /dev/null -L http://viki.com 2>&1; done | grep time | awk '{sum+=$2}END{print sum/10}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment