shell——tee的用法
作者:互联网
tee的用法
tee语法:tee [-a] [-i] [File…]
作用:相当于echo加>的作用,将标准输入输出到标准输入的同时写入文件
-a:(add)不覆盖原来的内容,添加到文件的后面
-i:(ignore)没完成则不被打断
#tee将文本输出到屏幕的同时写入tee.txt文件
$echo "Hello World"|tee tee.txt
Hello World
$cat tee.txt
Hello World
标签:echo,shell,写入,tee,用法,World,txt,Hello 来源: https://www.cnblogs.com/weifeng1463/p/15676683.html