重新排列列的元素并显示计数
我有这样的文本文件:
i
am
fine
how
are
you
what
i
how
are
我需要如下所示的输出:
i : 2
am : 1
fine : 1
how : 2
are : 2
you : 1
what : 1
可以有很多单词的重复: 我如何使用 shell 脚本或 awk 来做到这一点?
i have text file like this:
i
am
fine
how
are
you
what
i
how
are
i need an output like below:
i : 2
am : 1
fine : 1
how : 2
are : 2
you : 1
what : 1
there can be many repititions of the words:
how could i do this using a shell script or an awk?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
它对其进行排序,并且默认情况下计数位于行之前。那行得通吗?
It sorts it and the count is by default before the line. Would that work?
awk
有关联数组,所有变量都初始化为 0,所以上面的代码按预期工作。awk
has associative arrays, and all the variables are initialized to 0, so the above works as expected.@OP,如果你想保留订单
输出
@OP, if you want to preserve the order
output
在 Perl 中:
In Perl: