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

uniq和tee命令

时间:2017-01-12 16:11:49      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:uniq和tee命令

uniq   去重复

-c   计算重复的数量

注:uniq去重,它只会去相邻挨着的相同的字符,如果达到真正的去重,先用sort排序。

[root@wy ~]# cat 1.txt

1

1

2

3

2

4

[root@wy ~]# uniq 1.txt

1

2

3

2

4

[root@wy ~]# sort 1.txt |uniq -c

2 1

2 2

1 3

1 4


tee   重定向、双重输出

与>重定向的最大区别,tee可以直接显示出来

[root@wy ~]# echo "1111111111" > 1.txt

[root@wy ~]# cat 1.txt

1111111111

[root@wy ~]# echo "11111111" | tee 1.txt

11111111


本文出自 “linux” 博客,转载请与作者联系!

uniq和tee命令

标签:uniq和tee命令

原文地址:http://warm51fun.blog.51cto.com/3884274/1891390

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