Uniq 和计数

发布于 2024-12-18 07:09:20 字数 133 浏览 0 评论 0原文

有一个包含 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 技术交流群。

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

发布评论

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

评论(3

初吻给了烟 2024-12-25 07:09:20
echo '1 a
1 a
2 a
3 c
4 d
' | uniq -c

准确输出您的第二个块。

echo '1 a
1 a
2 a
3 c
4 d
' | uniq -c

outputs exactly your 2nd block.

沐歌 2024-12-25 07:09:20

我不清楚“仅在第一列上使用 uniq”是什么意思。如果第 1 列多次出现且第 2 列的值不同,您希望发生什么情况?如果发生这种情况,您的问题可能需要一些澄清。如果这在您的场景中不会发生,那么最简单的解决方案可能是

uniq -c filename

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

uniq -c filename
爱格式化 2024-12-25 07:09:20

如果这是在一个文件中那么

cat filename.txt|awk '{print $1}'|uniq -c

if this in a file then

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