uniq命令全称是“unique”,中文释义是“独特的,唯一的”。该命令的作用是用来去除文本文件中连续的重复行,中间不能夹杂其他文本行。去除了重复的,保留的都是唯一的,也就是独特的,唯一的了。
我们应当注意的是,它和sort的区别,sort只要有重复行,它就去除,而uniq重复行必须要连续,也可以用它忽略文件中的重复行。
语法格式:uniq [参数] [文件]
常用参数:
参考实例
删除连续文件中连续的重复行:
[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
只显示没有重复的纪录:
[root@linuxcool ~]# uniq -u testfile
[root@linuxcool ~]#
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)