标签: bash shell redirect tee
在bash中 是否有可能在我的shell和stdout + stderr(实际上是set -x的输出)中有一个stdout到文件中? 我尝试了不同的管道,重定向和三通组合,例如: command 2» output.txt | tee -a output.txt 但无法使其成功。
set -x
command 2» output.txt | tee -a output.txt
答案 0 :(得分:0)
command > stdout 2> err; cat stdout err > std; cat stdout; rm stdout err