返回一式三份的列表

发布于 2024-09-30 14:48:02 字数 85 浏览 2 评论 0原文

要查找重复项,您可以使用

sort | uniq -d

,但有没有快速找到三重项的方法?

To find duplicates you can use

sort | uniq -d

but is there a quick way to find triplicates?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠檬 2024-10-07 14:48:02

您可以使用:

sort | uniq -c | awk '$1 == 3'

uniq -c 给出第一列中出现的次数。 awk 行过滤第一列中包含 3 的所有行。

如果您希望所有项目出现 3 次或更多次,请编写 $1 >= 3

您还可以使用以下命令仅挑选项目名称(如果它们只是一列,没有空格):

sort | uniq -c | awk '$1 >= 3 {print $2}'

Ans so on 。 ..

You can use:

sort | uniq -c | awk '$1 == 3'

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:

sort | uniq -c | awk '$1 >= 3 {print $2}'

Ans so on ...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文