查看原文
其他

每天学一个 Linux 命令(33):uniq

点击关注 👉 民工哥技术之路 2021-12-16

点击上方“民工哥技术之路”,选择“设为星标”

回复“1024”获取独家整理的学习资料!


昨日推荐:每天学一个 Linux 命令(32):sort

命令简介

uniq 命令用于去除文件中重复行,一般与 sort 命令结合使用。

语法格式

uniq [选项] [标准输入 [输出]]
uniq [OPTION] [INPUT [OUTPUT]]
输入文件 #指定要去除的重复行文件。如果不指定该项,则从标准读入
输出文件 #指定要去除重复行后的内容要写入的输出文件。如果不指定此项,则将内容显示到标准输出设备(显示终端)。

选项说明

-c  #在每列旁边显示该行重复出现的次数
-d  #只显示重复出现的行与列
-f  #忽略比较指定的字段
-s  #忽略比较指定的字符
-i  #不区分大小写的比较
-u  #只显示出现过一次的行与列
-w  #指定要比较的字符
-z  #用0字节(NULL)代替换行符
--help    #显示帮助信息并退出
--version #显示版本信息并退出

应用举例

#删除重复行
[root@centos7 ~]# cat test.txt 
This is a test line
This is a test line
This is a test line
This is also a test line
This is also a test line
This is also also a test line
[root@centos7 ~]# uniq test.txt 
This is a test line
This is also a test line
This is also also a test line
[root@centos7 ~]# sort test.txt | uniq
This is also also a test line
This is also a test line
This is a test line

#只显示单一行
[root@centos7 ~]# uniq -u test.txt
This is also also a test line
[root@centos7 ~]# sort test.txt |uniq -u
This is also also a test line

#统计各行在文件中出现的次数
[root@centos7 ~]# sort test.txt |uniq -c
      1 This is also also a test line
      2 This is also a test line
      3 This is a test line

#在文件中找出重复的行
[root@centos7 ~]# sort test.txt |uniq -d
This is also a test line
This is a test line
每天学一个 Linux 命令(30):cut
每天学一个 Linux 命令(31):md5sum

推荐阅读 点击标题可跳转
全球当下最厉害的 14 位程序员,说没听过简直离谱~
别瞎学了,这几门语言要被淘汰了!
CentOS搭建VPN服务,一次性成功,收藏了
再见 CentOS! Rocky Linux 要来了
只知道HDFS和GFS?你其实并不懂分布式文件系统
Kubernetes生产环境最佳实践
6 个JVM性能监控、调优工具使用详解
配置 Linux 的时钟同步
高性能 Nginx HTTPS 调优!为 HTTPS 提速 30%


: . Video Mini Program Like ,轻点两下取消赞 Wow ,轻点两下取消在看

您可能也对以下帖子感兴趣

文章有问题?点此查看未经处理的缓存