Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一组非常大的字符串,文件的每一行都有一个。许多字符串在文件中的不同位置多次出现。
我想要使用 awk、grep、uniq 等 unix 命令对字符串进行频率计数。我尝试了几种组合,但没有奏效。
获取频率计数的确切命令是什么?
要计算文件中行的出现次数,最简单的方法是:
$ sort file | uniq -c