[root@linuxcool ~]# cat testfile
test 30
test 30
test 30
Hello 95
Hello 95
Hello 95
Hello 95
Linux 85
Linux 85
[root@linuxcool ~]# uniq testfile
test 30
Hello 95
Linux 85
统计相同内容行在文件中重复出现的次数:
[root@linuxcool ~]# uniq -c testfile
3 test 30
4 Hello 95
2 Linux 85
仅显示指定文件中存在一摸一样内容行的信息:
[root@linuxcool ~]# uniq -d testfile
test 30
Hello 95
Linux 85