确定陈旧数据
假设我有一个这种格式的文件,
12:04:21 .3
12:10:21 1.3
12:13:21 1.4
12:14:21 1.3
..and so on
我想在第二列中找到重复的数字,例如 10 个后续时间戳,从而找到陈旧性。
12:04:21 .3
12:10:21 1.3
12:14:21 1.3
12:10:21 1.3
12:14:21 1.3
12:12:21 1.3
12:24:21 1.3
12:30:21 1.3
12:44:21 1.3
12:50:21 1.3
13:04:21 1.3
13:24:21 1.7
应该打印 12:10:21 到 13:04:21 1.3
并且我想输出过时时间戳范围的开始和结束
有人可以帮我想出它吗?
您可以使用 awk、bash
谢谢
Say I have a file of this format
12:04:21 .3
12:10:21 1.3
12:13:21 1.4
12:14:21 1.3
..and so on
I want to find repeated numbers in the second column for, say, 10 consequent timestamps, thereby finding staleness.
12:04:21 .3
12:10:21 1.3
12:14:21 1.3
12:10:21 1.3
12:14:21 1.3
12:12:21 1.3
12:24:21 1.3
12:30:21 1.3
12:44:21 1.3
12:50:21 1.3
13:04:21 1.3
13:24:21 1.7
should print 12:10:21 through 13:04:21 1.3
and I want to output the beginning and and end of the stale timestamp range
Can someone help me come up with it?
You can use awk, bash
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑2:
发现并修复了另一个错误。
Edit 2:
Found and fixed another bug.
这是我的版本,更详细:
Here is my version, which is more verbose: