#直接覆盖日志文件   
ls -l | tee ./t.log   
#将输出内容附加到日志文件   
ls -l | tee -a ./t.log

使用的是tee命令

相关文章: