当前位置:  开发笔记 > 编程语言 > 正文

在管道上使用"tee"时如何将stderr写入文件?

如何解决《在管道上使用"tee"时如何将stderr写入文件?》经验,为你挑选了6个好方法。

我知道如何使用tee写输出(STDOUT中)aaa.shbbb.out,同时还在终端显示它:

./aaa.sh | tee bbb.out

我现在如何写STDERR一个名为的文件ccc.out,同时还显示它?



1> lhunath..:

我假设您仍希望在终端上看到STDERR和STDOUT.你可以去找Josh Kelley的答案,但我发现tail在后台保持一个输出你的日志文件非常hackish和cludgy.注意你需要保留一个exra FD并在之后通过杀死它进行清理,技术上应该在一个trap '...' EXIT.

有一种更好的方法可以做到这一点,你已经发现了它:tee.

只是,而不是仅仅为stdout使用它,有stdout的发球台和stderr的发球台.你将如何实现这一目标?进程替换和文件重定向:

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

让我们分开并解释一下:

> >(..)

>(...)(进程替换)创建一个FIFO并tee让它监听.然后,它使用>(文件重定向)将STDOUT重定向command到您第一个tee正在侦听的FIFO .

同样的事情是第二个:

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

我们再次使用进程替换来创建一个tee从STDIN读取并将其转储到的进程stderr.log. tee在STDOUT上输出其输入,但由于它的输入是我们的STDERR,我们想要再次将teeSTDOUT 重定向到我们的STDERR.然后我们使用文件重定向将commandSTDERR 重定向到FIFO的输入(tee's STDIN).

请参阅http://mywiki.wooledge.org/BashGuide/InputAndOutput

进程替换是你选择bash作为shell而不是sh(POSIX或Bourne)的额外奖励之一.


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"


对于那些"看到相信"的人来说,快速测试:`(echo"Test Out";>&2 echo"Test Err")>>(tee stdout.log)2 >>(tee stderr.log>&2)
我试过这个:`$ echo"HANG">>(tee stdout.log)2 >>(tee stderr.log>&2)`哪个有效,但等待输入.有这么简单的原因吗?

2> 小智..:

为什么不简单:

./aaa.sh 2>&1 | tee -a log

这只是简单地重定向stderrstdout,所以T恤回应记录和屏幕.也许我错过了一些东西,因为其他一些解决方案看起来很复杂.

注意:从bash版本4开始,您可以使用|&以下缩写2>&1 |:

./aaa.sh |& tee -a log


如果你想让stdout(通道1)和stderr(通道2)都记录到同一个文件(包含stdout和sterr混合的单个文件),这样可以正常工作.另一个更复杂的解决方案允许您将stdout和stderr分成2个不同的文件(分别是stdout.log和stderr.log).有时这很重要,有时却不重要.
在许多情况下,其他解决方案远比必要复杂得多.这个适合我.
此方法的问题是您从aaa.sh进程中丢失了退出/状态代码,这可能很重要(例如,在makefile中使用时).您接受的答案没有这个问题.
如果你不介意合并stdout/stderr然后`./aaa.sh |&tee aaa.log`工作(在bash中).
@Stefaan我相信你可以保留退出状态,如果你在命令链前添加`set -o pipefail`后跟`;`或`&&`如果我没有弄错的话.
正式在4中添加了`|&`作为“ 2>&1 |`(http://wiki.bash-hackers.org/bash4)的”同义词“。

3> 小智..:

这可能对通过谷歌找到这个的人有用.只需取消注释您想要尝试的示例即可.当然,随意重命名输出文件.

#!/bin/bash

STATUSFILE=x.out
LOGFILE=x.log

### All output to screen
### Do nothing, this is the default


### All Output to one file, nothing to the screen
#exec > ${LOGFILE} 2>&1


### All output to one file and all output to the screen
#exec > >(tee ${LOGFILE}) 2>&1


### All output to one file, STDOUT to the screen
#exec > >(tee -a ${LOGFILE}) 2> >(tee -a ${LOGFILE} >/dev/null)


### All output to one file, STDERR to the screen
### Note you need both of these lines for this to work
#exec 3>&1
#exec > >(tee -a ${LOGFILE} >/dev/null) 2> >(tee -a ${LOGFILE} >&3)


### STDOUT to STATUSFILE, stderr to LOGFILE, nothing to the screen
#exec > ${STATUSFILE} 2>${LOGFILE}


### STDOUT to STATUSFILE, stderr to LOGFILE and all output to the screen
#exec > >(tee ${STATUSFILE}) 2> >(tee ${LOGFILE} >&2)


### STDOUT to STATUSFILE and screen, STDERR to LOGFILE
#exec > >(tee ${STATUSFILE}) 2>${LOGFILE}


### STDOUT to STATUSFILE, STDERR to LOGFILE and screen
#exec > ${STATUSFILE} 2> >(tee ${LOGFILE} >&2)


echo "This is a test"
ls -l sdgshgswogswghthb_this_file_will_not_exist_so_we_get_output_to_stderr_aronkjegralhfaff
ls -l ${0}


不,我猜exec可以使用一些解释.`exec>`表示将文件描述符的目标移动到某个目的地.默认值为1,因此,`exec>/dev/null`在此会话中从现在开始将stdout的输出移动到/ dev/null.通过执行`ls -l/dev/fd /`可以看到此会话的当前文件描述符.试试吧!然后看看当你发出`exec 2>/tmp/stderr.log时会发生什么.另外,`exec 3>&1`意味着,创建一个数字为3的新文件描述符,并将其重定向到文件描述符1的目标.例如,目标是发出命令时的屏幕.

4> Josh Kelley..:

要将stderr重定向到文件,将stdout显示到屏幕,并将stdout保存到文件:

./aaa.sh 2>ccc.out | tee ./bbb.out

编辑:要显示stderr和stdout到屏幕并同时保存到文件,您可以使用bash的I/O重定向:

#!/bin/bash

# Create a new file descriptor 4, pointed at the file
# which will receive stderr.
exec 4<>ccc.out

# Also print the contents of this file to screen.
tail -f ccc.out &

# Run the command; tee stdout as normal, and send stderr
# to our file descriptor 4.
./aaa.sh 2>&4 | tee bbb.out

# Clean up: Close file descriptor 4 and kill tail -f.
exec 4>&-
kill %1


我应该更清楚一些,我也确实希望将stderr显示在屏幕上。我仍然很喜欢Josh Kelley的解决方案,但是找到了更适合我需求的百叶窗。多谢你们!

5> Gilles 'SO- ..:

换句话说,您希望将stdout传递给一个filter(tee bbb.out)和stderr到另一个filter(tee ccc.out).没有标准方法可以将除stdout之外的任何东西传递给另一个命令,但是你可以通过处理文件描述符来解决这个问题.

{ { ./aaa.sh | tee bbb.out; } 2>&1 1>&3 | tee ccc.out; } 3>&1 1>&2

另请参见如何grep标准错误流(stderr)?和你什么时候会使用一个额外的文件描述符?

在bash(和ksh和zsh)中,但不在其他POSIX shell(如dash)中,您可以使用进程替换:

./aaa.sh > >(tee bbb.out) 2> >(tee ccc.out)

请注意,在bash中,./aaa.sh即使tee命令仍在执行(ksh和zsh等待子进程),此命令也会在完成后立即返回.如果你这样做,这可能是一个问题./aaa.sh > >(tee bbb.out) 2> >(tee ccc.out); process_logs bbb.out ccc.out.在这种情况下,请改用文件描述符juggling或ksh/zsh.


这似乎是允许将stdout/stderr流保持原样的唯一答案(例如,不合并它们).甜!

6> ChristopheD..:

如果使用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

信用(不是从我的头脑回答)到这里:http://www.cygwin.com/ml/cygwin/2003-06/msg00772.html

推荐阅读
跟我搞对象吧
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有