ping命令显示时间
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ping命令显示时间相关的知识,希望对你有一定的参考价值。
ping 127.0.0.1 | awk ‘ print $0"\t" strftime("%Y-%m-%d %H:%M:%S",systime()) ‘
注释:
\t //换行字符
$0 //打印整行
print $0 "\t" //逐行打印
strftime()//时间函数。一般配合系统时间函数systime()使用
strftime("%Y-%m-%d %H:%M:%S",systime()) //打印系统时间
- busybox
[root@master1 ~]#docker service create --name busybox3 --replicas=3 busybox ping baidu.com
[root@master1 ~]# docker service logs busybox3 -f -t
以上是关于ping命令显示时间的主要内容,如果未能解决你的问题,请参考以下文章