Get Your Website Response TIME
For HTTP Site
Copy the following command and run it from your shell
for X in `seq 6`; do curl -Ik -w "HTTPCode=%{http_code} TotalTime=%{time_total}\n" http://example.com/ -so /dev/null; done
For HTTPS Site
for X in `seq 6`; do curl -Ik -w "HTTPCode=%{http_code} TotalTime=%{time_total}\n" https://example.com/ -so /dev/null; done
Comments
Post a Comment