博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
uniq 去除重复命令使用方法介绍
阅读量:6236 次
发布时间:2019-06-22

本文共 895 字,大约阅读时间需要 2 分钟。

Linux Shell学习:uniq命令使用方法介绍uniq命令的作用:显示唯一的行,对于那些连续重复的行只显示一次!接下来通过实践实例说明. [关键字] Linux Shell uniq

看test.txt文件的内容,可以看到其中的连续重复行

[root@hexu.org ~]# cat test.txt

boy took bat home
boy took bat home
girl took bat home
dog brought hat home
dog brought hat home
dog brought hat home

uniq命令不加任何参数,仅显示连续重复的行一次

[root@hexu.org ~]# uniq test.txt

boy took bat home
girl took bat home
dog brought hat home

-c 参数显示文件中每行连续出现的次数。

[root@hexu.org ~]# uniq -c test.txt

2 boy took bat home
1 girl took bat home
3 dog brought hat home

-d选项仅显示文件中连续重复出现的行。

[root@hexu.org ~]# uniq -d test.txt

boy took bat home
dog brought hat home

-u选项显示文件中没有连续出现的行。

[root@hexu.org ~]# uniq -u test.txt

girl took bat home

忽略每行的前2个字段,忽略第二个空白字符和第三个字段的首字符,结果at home

[root@hexu.org ~]# uniq -f 2 -s 2 test.txt

boy took bat home

忽略每行的第一个字段,这样boy ,girl开头的行看起来是连续重复的行。

[root@hexu.org ~]# uniq -f 1 test.txt

boy took bat home
dog brought hat home

转载地址:http://sazia.baihongyu.com/

你可能感兴趣的文章
安卓--获取应用版本名称与版本号
查看>>
【转】Java判断是否是整数,小数或实数的正则表达式
查看>>
****创业者必看:黄太吉商业计划书完整版
查看>>
angularJS 事件广播与接收[转]
查看>>
The main reborn ASP.NET MVC4.0: using CheckBoxListHelper and RadioBoxListHelper
查看>>
什么是数据抽取
查看>>
Integer
查看>>
LaTeX 相对于 Word 有什么优势?
查看>>
invoke方法
查看>>
基于bootstrap的后台二级垂直菜单[转]
查看>>
Android Framework 记录之二
查看>>
李洪强iOS开发之-环信04_消息
查看>>
【Django】Django 文件下载最佳实践
查看>>
lvs调优主要是针对内核参数的调优
查看>>
iOS开发之Bug--UITextField使用时文字向下偏移问题
查看>>
在CentOS 7.2下升级gcc编译器的版本
查看>>
二维码(QRcode)容量的计算与版本
查看>>
Window10
查看>>
number-of-boomerangs
查看>>
Ajax
查看>>