博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux下ping加上时间戳
阅读量:5889 次
发布时间:2019-06-19

本文共 1145 字,大约阅读时间需要 3 分钟。

命令(ping10次):

ping 192.168.5.160 -c 10 | awk '{ print $0"\t" strftime("%H:%M:%S",systime()) } '

 

调用awk中的时间处理函数strftime给每个测量值加上时间戳。

结果如下:
PING 192.168.5.160 (192.168.5.160) 56(84) bytes of data.        15:51:38
64 bytes from 192.168.5.160: icmp_seq=1 ttl=64 time=0.245 ms        15:51:38
64 bytes from 192.168.5.160: icmp_seq=2 ttl=64 time=0.192 ms        15:51:39
64 bytes from 192.168.5.160: icmp_seq=3 ttl=64 time=0.190 ms        15:51:40
64 bytes from 192.168.5.160: icmp_seq=4 ttl=64 time=0.215 ms        15:51:41
64 bytes from 192.168.5.160: icmp_seq=5 ttl=64 time=0.214 ms        15:51:42
64 bytes from 192.168.5.160: icmp_seq=6 ttl=64 time=0.213 ms        15:51:43
64 bytes from 192.168.5.160: icmp_seq=7 ttl=64 time=0.209 ms        15:51:44
64 bytes from 192.168.5.160: icmp_seq=8 ttl=64 time=0.209 ms        15:51:45
64 bytes from 192.168.5.160: icmp_seq=9 ttl=64 time=0.206 ms        15:51:46
64 bytes from 192.168.5.160: icmp_seq=10 ttl=64 time=0.204 ms        15:51:47
        15:51:47
--- 192.168.5.160 ping statistics ---        15:51:47
10 packets transmitted, 10 received, 0% packet loss, time 8997ms        15:51:47
rtt min/avg/max/mdev = 0.190/0.209/0.245/0.022 ms        15:51:47

转载于:https://www.cnblogs.com/Jim-william/p/3583774.html

你可能感兴趣的文章
ASP.NET 回调技术(CallBack)
查看>>
Spark源码分析 – BlockManager
查看>>
JS中的this
查看>>
人生, 不要在别扭的事上纠结
查看>>
C的面向对象编程
查看>>
日志服务器架构设计
查看>>
使用Unity开发Android的几种调试方法
查看>>
C++ 基础笔记(一)
查看>>
编译内核出错:invalid option `abi=aapcs-linux' 解决办法
查看>>
System.Func<>与System.Action<>
查看>>
[翻译] EnterTheMatrix
查看>>
asp.net开源CMS推荐
查看>>
我所思考的生活,致半年后的自己
查看>>
Python 学习书籍推荐
查看>>
Jmeter----属性和变量
查看>>
MySQL的SQL预处理(Prepared)
查看>>
webpack8--删除dist目录,压缩分离后的CSS
查看>>
微信小程序开发:http请求
查看>>
【netcore基础】.NET Core使用EPPlus实现MVC API里的Excel导出功能 配置中文表头
查看>>
对C++ templates类模板的几点补充(Traits类模板特化)
查看>>