本文主要是介绍uniq常用选项-c-d-u的来源和3种显示方式或3种基本用法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
-c, --count prefix lines by the number of occurrences\n\
-d, --repeated only print duplicate lines, one for each group\n\
"), stdout);
-u, --unique only print unique lines\n\
[root@localhost src]# uniq -u 1.txt
a
只显示不重复的行
[root@localhost src]# uniq 1.txt
a
b
c
d
显示所有的[去掉重复]行,
也就是-u选项和-d选项的和。
但是如果-u -d选项都加上,则什么也不显示。
[root@localhost src]# uniq -d 1.txt
b
c
d
只显示重复的行
[root@localhost src]#
这篇关于uniq常用选项-c-d-u的来源和3种显示方式或3种基本用法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!