我知道如何使用tee将aaa.sh的输出(标准输出)写入bbb。退出,同时仍然显示在终端中:

./aaa.sh | tee bbb.out

我现在如何将标准错误写入一个名为ccc的文件。退出,同时仍然显示它?


当前回答

如果使用Bash:

# Redirect standard out and standard error separately
% cmd >stdout-redirect 2>stderr-redirect

# Redirect standard error and out together
% cmd >stdout-redirect 2>&1

# Merge standard error with standard out and pipe
% cmd 2>&1 |cmd2

信用(不回答从我的头顶)在这里:Re: bash: stderr & more(管道为stderr)

其他回答

就像lhunath解释得很好的公认答案一样,你可以使用

command > >(tee -a stdout.log) 2> >(tee -a stderr.log >&2)

注意,如果使用bash,可能会遇到一些问题。

让我以matthewwilcoxson为例。

对于那些“眼见为实”的人,做一个简单的测试: (echo "Test Out";>&2 echo "Test Err") > >(tee stdout.log) 2> >(tee stderr.log >&2)

就我个人而言,当我尝试时,我得到了这样的结果:

user@computer:~$ (echo "Test Out";>&2 echo "Test Err") > >(tee stdout.log) 2> >(tee stderr.log >&2)
user@computer:~$ Test Out
Test Err

这两个消息不会出现在同一个级别。为什么测试输出看起来像我之前的命令?

提示符在一个空行上,让我认为这个过程还没有结束,当我按下Enter这个修复它。 当我检查文件的内容时,它是ok的,重定向工作。

我们再做一个测试。

function outerr() {
  echo "out"     # stdout
  echo >&2 "err" # stderr
}
user@computer:~$ outerr
out
err

user@computer:~$ outerr >/dev/null
err

user@computer:~$ outerr 2>/dev/null
out

再次尝试重定向,但是使用这个函数:

function test_redirect() {
  fout="stdout.log"
  ferr="stderr.log"
  echo "$ outerr"
  (outerr) > >(tee "$fout") 2> >(tee "$ferr" >&2)
  echo "# $fout content: "
  cat "$fout"
  echo "# $ferr content: "
  cat "$ferr"
}

就我个人而言,我有这样的结果:

user@computer:~$ test_redirect
$ outerr
# stdout.log content:
out
out
err
# stderr.log content:
err
user@computer:~$

空行上没有提示符,但我没有看到正常的输出。stdout.log内容似乎是错误的,只有stderr.log似乎是正确的。

如果我重新启动它,输出可能会不同…

所以,为什么?

因为,就像这里解释的那样:

注意,在bash中,该命令在[first command]完成后立即返回,即使tee命令仍在执行(ksh和zsh确实等待子进程)

所以,如果你使用Bash,更喜欢使用其他答案中给出的更好的例子:

{ { outerr | tee "$fout"; } 2>&1 1>&3 | tee "$ferr"; } 3>&1 1>&2

它将修复以前的问题。

现在的问题是,如何检索退出状态代码?

$ ?不管用。

我没有发现比使用set -o pipefail (set +o pipefail to switch off)打开pipefail更好的解决方案,并使用${PIPESTATUS[0]}像这样:

function outerr() {
  echo "out"
  echo >&2 "err"
  return 11
}

function test_outerr() {
  local - # To preserve set option
  ! [[ -o pipefail ]] && set -o pipefail; # Or use second part directly
  local fout="stdout.log"
  local ferr="stderr.log"
  echo "$ outerr"
  { { outerr | tee "$fout"; } 2>&1 1>&3 | tee "$ferr"; } 3>&1 1>&2
  # First save the status or it will be lost
  local status="${PIPESTATUS[0]}" # Save first, the second is 0, perhaps tee status code.
  echo "==="
  echo "# $fout content :"
  echo "<==="
  cat "$fout"
  echo "===>"
  echo "# $ferr content :"
  echo "<==="
  cat "$ferr"
  echo "===>"
  if (( status > 0 )); then
    echo "Fail $status > 0"
    return "$status" # or whatever
  fi
}
user@computer:~$ test_outerr
$ outerr
err
out
===
# stdout.log content:
<===
out
===>
# stderr.log content:
<===
err
===>
Fail 11 > 0

以下将适用于KornShell (ksh),其中进程替代不可用,

# create a combined (standard input and standard output) collector
exec 3 <> combined.log

# stream standard error instead of standard output to tee, while draining all standard output to the collector
./aaa.sh 2>&1 1>&3 | tee -a stderr.log 1>&3

# cleanup collector
exec 3>&-

这里真正的技巧是2>&1 1>&3的序列,在我们的例子中,它将标准错误重定向到标准输出,并将标准输出重定向到文件描述符3。此时,标准误差和标准输出还没有结合起来。

实际上,标准错误(作为标准输入)被传递给tee, tee在那里将日志记录到stderr.log,并重定向到文件描述符3。

文件描述符3一直将其记录到combined。log。因此,combine .log包含标准输出和标准错误。

在我的例子中,一个脚本正在运行命令,同时将stdout和stderr重定向到一个文件,类似于:

cmd > log 2>&1

我需要更新它,以便在出现故障时,根据错误消息采取一些操作。当然,我可以删除dup 2>&1并从脚本中捕获stderr,但是错误消息不会进入日志文件以供参考。虽然从lhunath接受的答案应该做同样的事情,它将stdout和stderr重定向到不同的文件,这不是我想要的,但它帮助我提出了我需要的确切解决方案:

(cmd 2> >(tee /dev/stderr)) > log

通过上述操作,log将同时拥有标准输出和标准错误的副本,并且我可以从脚本中捕获标准错误,而不必担心标准错误。

我假设您仍然希望在终端上看到标准错误和标准输出。你可以选择Josh Kelley的答案,但我发现在后台保持一个尾巴,输出你的日志文件非常笨拙。注意,你需要保留一个额外的文件描述符,然后通过杀死它来进行清理,从技术上讲,应该在陷阱'…'中进行清理退出。

有一个更好的方法可以做到这一点,并且您已经发现了它:tee。

只是,它不仅仅用于标准输出,还有一个用于标准输出和一个用于标准误差。你将如何做到这一点?进程替换和文件重定向:

command > >(tee -a stdout.log) 2> >(tee -a stderr.log >&2)

让我们分开来解释:

> >(..)

>(…)(进程替换)创建一个FIFO并让tee监听它。然后,它使用>(文件重定向)将命令的标准输出重定向到您的第一个tee正在侦听的FIFO。

第二种情况也一样:

2> >(tee -a stderr.log >&2)

我们再次使用进程替换来创建一个tee进程,该进程从标准输入读取数据并将其转储到stderr.log中。Tee将它的输入输出回标准输出,但由于它的输入是我们的标准误差,我们希望将Tee的标准输出重定向到我们的标准误差。然后我们使用文件重定向将命令的标准错误重定向到FIFO的输入(tee的标准输入)。

参见输入和输出

进程替换是选择Bash而不是sh (POSIX或Bourne)作为shell的额外好处之一。


在sh中,你必须手动操作:

out="${TMPDIR:-/tmp}/out.$$" err="${TMPDIR:-/tmp}/err.$$"
mkfifo "$out" "$err"
trap 'rm "$out" "$err"' EXIT
tee -a stdout.log < "$out" &
tee -a stderr.log < "$err" >&2 &
command >"$out" 2>"$err"

如果使用Bash:

# Redirect standard out and standard error separately
% cmd >stdout-redirect 2>stderr-redirect

# Redirect standard error and out together
% cmd >stdout-redirect 2>&1

# Merge standard error with standard out and pipe
% cmd 2>&1 |cmd2

信用(不回答从我的头顶)在这里:Re: bash: stderr & more(管道为stderr)