shell命令uniq

 uniq命令通过消除重复内容,只能用于排过序的数据

cat sorted.txt

bash

foss 

hack

hack

uniq sorted.txt

bash

foss

hack

sort unsorted.txt|uniq

sort -u unsorted.txt

只显示唯一的行

uniq -u sorted.txt

bash

foss

sort unsorted.txt | uniq -u

sort unsorted.txt | uniq -c

1 bash

1 foss

2 hack

找出文件中重复的行

sort unsorted.txt | uniq -d

hack

    A+
发布日期:2017年06月24日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: