bash – 如何为每个ping结果设置时间戳?

前端之家收集整理的这篇文章主要介绍了bash – 如何为每个ping结果设置时间戳?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Ping默认返回:
64 bytes from 203.173.50.132: icmp_seq=0 ttl=244 time=57.746 ms

有什么方法可以让它添加时间戳?

例如,

Mon 21 May 2012 15:15:37 EST | 64 bytes from 203.173.50.132: icmp_seq=0 ttl=244 time=57.746 ms

我在OS X v10.7(Lion),似乎有一些BSD版本的ping。

如果你的AWK没有strftime():
ping host | perl -nle 'print scalar(localtime)," ",$_'

要将其重定向文件,请使用标准的shell重定向关闭输出缓冲:

ping host | perl -nle 'BEGIN {$|++} print scalar(localtime),$_' > outputfile

如果要ISO8601格式的时间戳:

ping host | perl -nle 'use Time::Piece; BEGIN {$|++} print localtime->datetime,$_' > outputfile
原文链接:https://www.f2er.com/bash/391172.html

猜你在找的Bash相关文章