本文参考How to redirect output to a file and stdout。
对于任意原本默认输出到标准输出stdout
的程序或命令foo
,只需执行
foo | tee output.file
即可同时输出到output.file
文件。
例如,若想输出当前目录下的所有目录与文件到标准输出stdout
的同时保存到output.file
文件,执行
ls -a | tee output.file
如果同时想输出程序或命令的标准错误stderr
到标准输出和文件,只需添加2>&1
即可:文章来源:https://www.toymoban.com/news/detail-851463.html
program [arguments...] 2>&1 | tee outfile
2>&1
的含义是将 channel 2(标准错误stderr
)重定向到 channel 1(标准输出stdout
),这样标准输出和标准错误的内容都将输出到标准输出。
如果想将输出内容附加到outfile
文件(而非覆写),只需添加-A
参数:文章来源地址https://www.toymoban.com/news/detail-851463.html
program [arguments...] 2>&1 | tee -a outfile
到了这里,关于Bash将输出同时重定向到标准输出stdout和文件的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!