Generally, wget shows transfer times in seconds. Is there a way I can to make it show the time in milliseconds?

link|improve this question

feedback

migrated from stackoverflow.com Jan 21 at 14:15

This question came from our site for professional and enthusiast programmers.

2 Answers

up vote 2 down vote accepted

The total average transfer rate and the total bytes transferred are also part of the output.

2010-02-04 09:18:48 (71.5 MB/s) - `index.html' saved [8105/8105]

8105 bytes / 71500000 bytes/sec ==> 0.0001133566 sec

link|improve this answer
That should probably be 71.5 * 1024 * 1024 and not 71,500,000. – mob Feb 4 '10 at 17:23
Thanks.. Will grep that out... – Legend Feb 4 '10 at 17:27
feedback

You can run time wget ... to get a real time estimate for a transfer from start to finish.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.