码迷,mamicode.com
首页 > 其他好文 > 详细

uniqu

时间:2015-04-02 14:55:00      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

uniq file // 删除连续重复的行,跳跃的不算
uniq
  -c // 显示重复的数量
  -d // 仅显示重复的
  -u // 显示没重复的行


  -f // 忽略 每行 的前几个字段
  -i // 不区分大小写

root@benjamin:~/tmp# cat foo.dat
a
a
a
b
b
a
a
c

root@benjamin:~/tmp# uniq foo.dat
a
b
a
c

root@benjamin:~/tmp# uniq -c foo.dat
3 a
2 b
2 a
1 c

root@benjamin:~/tmp# uniq -d foo.dat
a
b
a


root@benjamin:~/tmp# uniq -u foo.dat
c

 

uniqu

标签:

原文地址:http://www.cnblogs.com/benjaming/p/4386223.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!