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
2024-02-22 10:34:04
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