uniq命令

uniq与sort需配合使用

如果数据没有经过排序.uniq无法删除重复

[root@mio-test sort]# uniq t 
4
5
6
2
8
99
4
55
77
8
4
9
1

经过sort排序后,uniq起作用了

[root@mio-test sort]# sort -n t|uniq
1
2
4
5
6
8
9
55
77
99

-c 统计各行出现的次数

[root@mio-test sort]# sort -n t|uniq -c
      1 1
      1 2
      3 4
      1 5
      1 6
      2 8
      1 9
      1 55
      1 77
      1 99