At the moment, we're having broadband issues and I'm struggling to get the broadband provider to believe that we have an intermittent fault.
I'm doing
What I really need is a way of getting a timestamp into it i.e.
Suspect it involves piping commands or something, but not sure how. Thanks for your help.
I'm doing
Code:
ping -i 180 www.google.fr
64 bytes from 209.85.229.104: icmp_seq=0 ttl=54 time=197.007 ms
64 bytes from 209.85.229.104: icmp_seq=1 ttl=54 time=215.049 ms
64 bytes from 209.85.229.104: icmp_seq=2 ttl=54 time=234.023 ms
64 bytes from 209.85.229.104: icmp_seq=3 ttl=54 time=252.516 ms
64 bytes from 209.85.229.104: icmp_seq=4 ttl=54 time=172.732 ms
64 bytes from 209.85.229.104: icmp_seq=5 ttl=54 time=193.790 ms
64 bytes from 209.85.229.104: icmp_seq=6 ttl=54 time=50.417 ms
64 bytes from 209.85.229.104: icmp_seq=7 ttl=54 time=46.465 ms
^C
What I really need is a way of getting a timestamp into it i.e.
Code:
64 bytes from 209.85.229.104: icmp_seq=0 ttl=54 time=197.007 ms
[time of this ping] 64 bytes from 209.85.229.104: icmp_seq=1 ttl=54 time=215.049 ms
[time of this ping]64 bytes from 209.85.229.104: icmp_seq=2 ttl=54 time=234.023 ms
[time of this ping]64 bytes from 209.85.229.104: icmp_seq=3 ttl=54 time=252.516 ms
[time of this ping]64 bytes from 209.85.229.104: icmp_seq=4 ttl=54 time=172.732 ms
[time of this ping]64 bytes from 209.85.229.104: icmp_seq=5 ttl=54 time=193.790 ms
[time of this ping]64 bytes from 209.85.229.104: icmp_seq=6 ttl=54 time=50.417 ms
[time of this ping]64 bytes from 209.85.229.104: icmp_seq=7 ttl=54 time=46.465 ms
Suspect it involves piping commands or something, but not sure how. Thanks for your help.