tee命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tee命令相关的知识,希望对你有一定的参考价值。
tee命令tee命令可以把数据流同时重定向到文件和屏幕。
语法:
数据流 | tee [选项] [文件]
选项:
不加选项:覆盖重定向
-a:追加到文件
实例:
覆盖重定向。
[[email protected] ~]# head -n 2 /etc/passwd | cut -d ":" -f 1-3 | tee 1.txt
root:x:0
bin:x:1
[[email protected] ~]# cat 1.txt
root:x:0
bin:x:1
追加重定向。
[[email protected] ~]# head -n 2 /etc/passwd | cut -d ":" -f 1-3 | tee -a 1.txt
root:x:0
bin:x:1
[[email protected] ~]# cat 1.txt
root:x:0
bin:x:1
root:x:0
bin:x:1
以上是关于tee命令的主要内容,如果未能解决你的问题,请参考以下文章