bash – 如何将stdout stderr重定向到一个文件,同时保持流独立?

前端之家收集整理的这篇文章主要介绍了bash – 如何将stdout stderr重定向到一个文件,同时保持流独立?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
重新导向stdout stderr,以便在仍然输出到stdout时都写入文件是简单的:
cmd 2>&1 | tee output_file

但是现在,来自cmd的stdout / stderr都在stdout上.我想将stdout stderr写入同一个文件(所以排序是保留的,假设cmd是单线程),但是仍然可以单独重定向它们,如下所示:

some_magic_tee_variant combined_output cmd > >(command-expecting-stdout) 2> >(command-expecting-stderr)

所以combine_output包含了保存的顺序,但是command-expecting-stdout只得到stdout,而command-expecting-stderr只能得到stderr.基本上,我想记录stdout stderr,同时仍然允许stdout和stderr被单独重定向和管道.三通方法的问题是将它们合并在一起.有没有办法在bash / zsh这样做?

从我不明白这是你正在寻找.首先,我写了一个litst脚本写在stdout和stderr.看起来像这样:
$cat foo.sh 
#!/bin/bash

echo foo 1>&2
echo bar

然后我这样跑了:

$./foo.sh 2> >(tee stderr | tee -a combined) 1> >(tee stdout | tee -a combined)
foo
bar

我的bash中的结果如下所示:

$cat stderr
foo
$cat stdout 
bar
$cat combined 
foo
bar

请注意,-a标志是必需的,所以T恤不会覆盖其他T恤的内容.

原文链接:https://www.f2er.com/bash/386278.html

猜你在找的Bash相关文章