How do I write stderr to a file while using “tee” with a pipe?
我知道如何使用
1 | ./aaa.sh | tee bbb.out |
我现在如何将
我假设你还想在终端上看到stderr和stdout。你可以去问乔希·凯利的答案,但我发现在后台保留一个
有更好的方法可以做到这一点,而且你已经发现了它:
只有一个tee代表stdout,一个tee代表stderr,而不只是用于stdout。你将如何做到这一点?进程替换和文件重定向:
1 | command > >(tee -a stdout.log) 2> >(tee -a stderr.log >&2) |
让我们分开来解释一下:
1 | > >(..) |
第二种情况相同:
1 | 2> >(tee -a stderr.log >&2) |
我们再次使用进程替换来生成一个从stdin读取并将其转储到
请参阅http://mywiki.wooledge.org/bashguide/inputandoutput
过程替换是你选择
在
1 2 3 4 5 6 | 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" |
为什么不简单地说:
1 | ./aaa.sh 2>&1 | tee -a log |
这只会将
注:由于bash版本4,您可以使用
1 | ./aaa.sh |& tee -a log |
这可能对通过谷歌找到这个的人有用。只需取消对要尝试的示例的注释。当然,可以随意重命名输出文件。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | #!/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} |
要将stderr重定向到文件,请将stdout显示到屏幕,并将stdout保存到文件:
1 | ./aaa.sh 2>ccc.out | tee ./bbb.out |
编辑:要在屏幕上同时显示stderr和stdout,并将它们保存到文件中,可以使用bash的I/O重定向:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/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 |
换句话说,您希望将stdout导入一个过滤器(
1 | { { ./aaa.sh | tee bbb.out; } 2>&1 1>&3 | tee ccc.out; } 3>&1 1>&2 |
另请参见如何grep标准错误流(stderr)?你什么时候会使用一个额外的文件描述符?
在bash(以及ksh和zsh)中,而不是在dash等其他posix shell中,可以使用流程替换:
1 | ./aaa.sh > >(tee bbb.out) 2> >(tee ccc.out) |
注意,在bash中,即使执行了
如果使用BASH:
1 2 3 4 5 6 7 8 | # 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
以下内容适用于Kornshell(ksh),因为无法进行流程替换,
1 2 3 4 5 6 7 8 | # create a combined(stdin and stdout) collector exec 3 <> combined.log # stream stderr instead of stdout to tee, while draining all stdout to the collector ./aaa.sh 2>&1 1>&3 | tee -a stderr.log 1>&3 # cleanup collector exec 3>&- |
这里真正的诀窍是
实际上,
描述符
在我的例子中,一个脚本在将stdout和stderr重定向到一个文件时正在运行命令,如下所示:
1 | cmd > log 2>&1 |
我需要更新它,以便在出现故障时,根据错误消息采取一些操作。当然,我可以删除dup
1 | (cmd 2> >(tee /dev/stderr)) > log |
通过上面的内容,Log将同时拥有