test.txt如下
aaaaaaaaaaaabbbbbbccccccddd
采用命令如下:
sort test.txt | uniq -c | sort -r
命令执行的结果如下:
4 aaa 2 ccc 2 bbb 1 ddd