1、参数
-c 或--count 在每列旁边显示该行重复出现的次数。
-d 或--repeated 仅显示重复出现的行列。
-f <栏位>或--skip-fields=<栏位> 忽略比较指定的栏位。
-s <字符位置>或--skip-chars=<字符位置> 忽略比较指定的字符。
-i 不区分大小写
-u 或--unique 仅显示不重复的行。
-w <字符位置>或--check-chars=<字符位置> 指定要比较的数量。
--help 显示帮助。
--version 显示版本信息。
2、用法
素材
[root@centos ~]# cat file2
aatest 30
aatest 30
aatest 30
aaHello 95
aaHello 95
aaHello 95
aaHello 95
aaLinux 85
aaLinux 85
[root@centos ~]# cat file2 |uniq -c
3 aatest 30
4 aaHello 95
1 aaLinux 85
[root@centos ~]#
查看重复出现的行
[root@centos ~]# uniq -d file2
aatest 30
aaHello 95
aaLinux 85
[root@centos ~]#
限制比较字符数量
[root@centos ~]# uniq -w 2 file2
aatest 30
[root@centos ~]