📜  使用 tee 命令回显 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:30.156000             🧑  作者: Mango

代码示例2
# append
cat foo.txt
foo
echo 'bar' | tee -a foo.txt
bar
cat foo.txt
foo
bar