uniq 去重复
-c 计算重复的数量
注:uniq去重,它只会去相邻挨着的相同的字符,如果达到真正的去重,先用sort排序。
[[email protected] ~]# cat 1.txt
1
1
2
3
2
4
[[email protected] ~]# uniq 1.txt
1
2
3
2
4
[[email protected] ~]# sort 1.txt |uniq -c
2 1
2 2
1 3
1 4
tee 重定向、双重输出
与>重定向的最大区别,tee可以直接显示出来
[[email protected] ~]# echo "1111111111" > 1.txt
[[email protected] ~]# cat 1.txt
1111111111
[[email protected] ~]# echo "11111111" | tee 1.txt
11111111
时间: 2025-01-16 01:32:05