Uniq 和计数
有一个包含 2 列的文件, 只需要在第 1 列上使用 uniq 并打印 结果中的列以及出现次数 (与-c)。
例子:
1 a 1 a 2 a 3 c 4 d 2 1 a 1 2 a 1 3 c 1 4 d
Have a file with 2 columns,
need to use uniq on column 1 only and print
both the columns in the results as well as the count of the occurrences
(with -c).
Example:
1 a 1 a 2 a 3 c 4 d 2 1 a 1 2 a 1 3 c 1 4 d
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
准确输出您的第二个块。
outputs exactly your 2nd block.
我不清楚“仅在第一列上使用 uniq”是什么意思。如果第 1 列多次出现且第 2 列的值不同,您希望发生什么情况?如果发生这种情况,您的问题可能需要一些澄清。如果这在您的场景中不会发生,那么最简单的解决方案可能是
It's not clear to me what you mean by "use uniq on column 1 only." What do you want to happen if column 1 appears multiple times with different column 2 values? If this can happen, your question probably needs a little clarification. If this can't happen in your scenario, then the easiest solution is probably
如果这是在一个文件中那么
if this in a file then