我有一个pipline做的
command1 | command2
所以,command1的stdout转到command2,而command1的stderr转到终端(或者shell的stdout处)。
如何管道stderr的command1到第三个进程(command3),而stdout仍然是command2?
使用另一个文件描述符
原文链接:https://www.f2er.com/bash/390922.html{ command1 2>&3 | command2; } 3>&1 1>&2 | command3
您最多可以使用7个其他文件描述符:从3到9。
如果你想要更多的解释,请问,我可以解释;-)
测试
{ { echo a; echo >&2 b; } 2>&3 | sed >&2 's/$/1/'; } 3>&1 1>&2 | sed 's/$/2/'
输出:
b2 a1
例
生成两个日志文件:
1.只有stderr
stderr和stdout
{ { { command 2>&1 1>&3; } | tee err-only.log; } 3>&1; } > err-and-stdout.log
如果命令是echo“stdout”; echo“stderr”>& 2然后我们可以这样测试:
$ { { { echo out>&3;echo err>&1;}| tee err-only.log;} 3>&1;} > err-and-stdout.log $ head err-only.log err-and-stdout.log ==> err-only.log <== err ==> err-and-stdout.log <== out err