zoukankan      html  css  js  c++  java
  • Linux下ping加上时间戳

    命令(ping10次):

    ping 192.168.5.160 -c 10 | awk '{ print $0"	" 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

  • 相关阅读:
    Android 长时间运行任务说明
    phoneGap,angularJs,onSen的一些备忘
    cordova 选择图片并上传到服务器
    手机PC文件传输
    一组RS485设备操作命令
    asp.net 中长尾链接实现推送 -- comet
    ardunio 实现RS485通讯-下位机
    JPEG Camer 图片上传
    ImageResizer 3.4.3配置
    arduino空调遥控器
  • 原文地址:https://www.cnblogs.com/Jim-william/p/3583774.html
Copyright © 2011-2022 走看看