uniq参数uniquniq用于过滤掉重复的行,该命令只对排序后的文件有效。 下面是example.txt文件的内容。 aababcdc 对该文件进行排序后,再过滤掉重复的行。 $ sort example.txt | uniqabcd 参数-c参数会显示每行一共出现了多少次。 sort example.txt | uniq -c 3 a 2 b 2 c 1 d