Ping默认返回:
64 bytes from 203.173.50.132: icmp_seq=0 ttl=244 time=57.746 ms@H_403_3@有什么方法可以让它添加时间戳? @H_403_3@例如,
Mon 21 May 2012 15:15:37 EST | 64 bytes from 203.173.50.132: icmp_seq=0 ttl=244 time=57.746 ms@H_403_3@我在OS X v10.7(Lion),似乎有一些@L_404_1@版本的ping。
如果你的AWK没有strftime():
原文链接:https://www.f2er.com/bash/391172.htmlping host | perl -nle 'print scalar(localtime)," ",$_'@H_403_3@要将其重定向到文件,请使用标准的shell重定向并关闭输出缓冲:
ping host | perl -nle 'BEGIN {$|++} print scalar(localtime),$_' > outputfile@H_403_3@如果要ISO8601格式的时间戳:
ping host | perl -nle 'use Time::Piece; BEGIN {$|++} print localtime->datetime,$_' > outputfile