返回一式三份的列表
要查找重复项,您可以使用
sort | uniq -d
,但有没有快速找到三重项的方法?
To find duplicates you can use
sort | uniq -d
but is there a quick way to find triplicates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用:
uniq -c 给出第一列中出现的次数。 awk 行过滤第一列中包含 3 的所有行。
如果您希望所有项目出现 3 次或更多次,请编写
$1 >= 3
您还可以使用以下命令仅挑选项目名称(如果它们只是一列,没有空格):
Ans so on 。 ..
You can use:
uniq -c gives you a count of occurences in the first column. The awk line filters all lines with has 3 in the first column.
If you want all items occuring 3 or more times write
$1 >= 3
You can also pick out just the items names with (if they are just one column with no spaces) with:
Ans so on ...