欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【每日一句shell】一句shell实现wordcount

程序员文章站 2022-07-12 14:08:53
...

实现效果如下:

【每日一句shell】一句shell实现wordcount


参考答案:

cat day1.txt | tr -s ' ' '\n' | sort | uniq -c |  sort -r | awk '{ print $2, $1 }'

对我的文章感兴趣可关注以下公众号:
【每日一句shell】一句shell实现wordcount

相关标签: shell