uniq 去重复,-c (count) 计重复的数量
[root@daixuan ~]# cat 3.txt
b
d
c
b
1
4
3
2
2
4
[root@daixuan ~]# uniq -c 3.txt uniq只能识别连续的2,两个4分开,1个4,1个4
1 b 1个b
1 d
1 c
1 b 1个b
1 1
1 4 1个4
1 3
2 2 2个2
1 4 1个4
[root@daixuan ~]# sort 3.txt | uniq -c 使用sort先排序后可以识别不连续的4和不连续的b
1 1
2 2 2个2
1 3
2 4 2个4
2 b 2个b
1 c
1 d
tee 不仅把内容或者正确的结果重定向到1.txt文件中,同时在显示器上显示
[root@daixuan ~]# echo "1111111" > 1.txt 显示器上并没有显示重定向的内容
[root@daixuan ~]# cat 1.txt
1111111
[root@daixuan ~]# echo "1111111111111" | tee 1.txt
1111111111111
[root@daixuan ~]# echo "12345678" | tee 1.txt
12345678 显示器上显示的重定向的内容
转载于:https://blog.51cto.com/daixuan/1717378