I am stuck with a problem. I have list of 10 URL. I need to calculate the page load time.
I am presently using curl for getting the page load time:
time curl www.growingcraft.com
Second method:
wget www.growingcraft.com
The problem is that, this gives me the time taken to download the page, but :
Is there any other way I can calculate page load time in Linux which will be more effective/accurate?
Try this:
time wget -pq --no-cache --delete-after www.growingcraft.com
-p
makes it download all the resources (images, scripts, etc.)
-q
makes it quiet.
The other options should be self-explanatory.