用于获取时间平均值的 awk 脚本
我有一个带有时间戳格式的文件:
HH:MM:SS.MS
例如
00:04:02.08
00:04:01.08
每个时间戳位于不同的行,通常文件中只有两行
我需要编写一个 awk 脚本来计算这些时间的平均值。我对awk脚本编写非常天真,所以如果有人能给我一个代码片段,这将会有很大帮助。
即使是 shell 脚本 (bash) 解决方案也会有所帮助。
I have a file with timestamps in the format:
HH:MM:SS.MS
e.g.
00:04:02.08
00:04:01.08
Each timestamp is on a different line, usually just two lines in a file
I need to write an awk script to calculate average of these times. I am quite naive in awk scripting, so if someone can please give me a code-snippet, it will a lot of help.
Even a shell script (bash) solution will help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
并运行它...
And running it...