Revision 10405,
221 bytes
checked in by ghudson, 27 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r10404,
which included commits to RCS files with non-trunk default branches.
|
Rev | Line | |
---|
[10404] | 1 | /^ *[0-9]/ { |
---|
| 2 | # print out the average time to each hop along a route. |
---|
| 3 | tottime = 0; n = 0; |
---|
| 4 | for (f = 5; f <= NF; ++f) { |
---|
| 5 | if ($f == "ms") { |
---|
| 6 | tottime += $(f - 1) |
---|
| 7 | ++n |
---|
| 8 | } |
---|
| 9 | } |
---|
| 10 | if (n > 0) |
---|
| 11 | print $1, tottime/n, median |
---|
| 12 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.