gpt4 book ai didi

linux - 如何在 Ping 消息中显示以毫秒为单位的时间戳?

转载 作者:太空宇宙 更新时间:2023-11-04 09:37:48 26 4
gpt4 key购买 nike

如何更改我当前的 Ping 时间戳以包括毫秒?目前它给我的日期只有几秒钟的细粒度。

 ping google.com | while read pong; do echo " $pong  @$(date)"; done

请注意,答案应该可以在 shell 上执行,因为我正在使用 ADB 在手机上运行它。

最佳答案

如果您对纳秒感到满意...(毫秒将需要一些额外的数学运算,这会影响执行时间)这会起作用:

ping google.com | while read pong; do echo " $pong  @$(date  '+%Y%m%d%H%M%S.%N')"; done

并剖析我们在日期时抛出的格式字符串

%Y = 4-digit year
%m = month
%d = day
%H = hour
%M = minute
%S = seconds
%N = nanoseconds

详情:

man date

关于linux - 如何在 Ping 消息中显示以毫秒为单位的时间戳?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24666111/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com