如何在使用pipe道使用“tee”时将stderr写入文件?
我有一个命令,它会将aaa.sh
的输出打印到屏幕上,同时将stdout写入bbb.out
; 不过,我也想写一个名为ccc.out
的文件stderr 。 任何build议如何修改下面的一块?
./aaa.sh | tee ./bbb.out
更新:无论如何, stdout和stderr都应该被打印到屏幕上。
我假设你还想在terminal上看到STDERR和STDOUT。 你可以去乔希·凯利的答案,但我发现在后台输出你的日志文件非常hackish和cludgy周围尾巴。 注意你需要保留一个exra FD,然后通过杀死它来进行清理,在技术上应该在trap '...' EXIT
这样做。
有一个更好的方法来做到这一点,你已经发现它: tee
。
只是,而不是仅仅用于你的标准输出,有一个标准输出stdout和一个stderr。 你将如何做到这一点? 进程replace和文件redirect:
command > >(tee -a stdout.log) 2> >(tee -a stderr.log >&2)
让我们分解并解释:
> >(..)
>(...)
(进程replace)创build一个FIFO并让tee
监听它。 然后,它使用>
(文件redirect)将command
的STDOUTredirect到第一个tee
正在侦听的FIFO。
第二件事情同样如此:
2> >(tee -a stderr.log >&2)
我们再次使用进程replace来创build一个从STDIN读取并将其转储到stderr.log
的tee
进程。 tee
在STDOUT上输出它的input,但是由于它的input是我们的STDERR,所以我们要重新把tee
的STDOUTredirect到STDERR。 然后我们使用文件redirect将command
的STDERRredirect到FIFO的input( tee
的STDIN)。
请参阅http://mywiki.wooledge.org/BashGuide/InputAndOutput
过程replace是你selectbash
作为你的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"
为什么不简单:
./aaa.sh 2>&1 | tee -a log
这只是将stderr
redirect到stdout
,因此tee回声login和屏幕。 也许我错过了一些东西,因为其他一些解决scheme似乎很复杂。
注意:由于bash版本4,您可以使用|&
作为2>&1 |
的缩写 :
./aaa.sh |& tee -a log
这可能对通过谷歌寻找这个人有用。 简单地取消注释您想要尝试的示例。 当然,可以随意重命名输出文件。
#!/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}
要将stderrredirect到文件,请将stdout显示为屏幕,并将stdout另存为文件:
./aaa.sh 2> ccc.out | tee ./bbb.out
编辑 :要显示stderr和stdout屏幕并保存两个文件,您可以使用bash的I / Oredirect :
#!/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
换句话说,你想将stdoutpipe入一个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标准错误stream(stderr)? 什么时候使用额外的文件描述符?
在bash(和ksh和zsh)中,但不在其他POSIX shell(如短划线)中,可以使用进程replace :
./aaa.sh > >(tee bbb.out) 2> >(tee ccc.out)
注意,在bash中,即使仍然执行了tee
命令(ksh和zsh等待子./aaa.sh
,只要./aaa.sh
完成,该命令就立即返回。 这可能是一个问题,如果你做类似./aaa.sh > >(tee bbb.out) 2> >(tee ccc.out); process_logs bbb.out ccc.out
./aaa.sh > >(tee bbb.out) 2> >(tee ccc.out); process_logs bbb.out ccc.out
。 在这种情况下,请使用文件描述符juggling或ksh / zsh。
如果使用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
就我而言,一个脚本正在运行命令,同时将stdout和stderrredirect到一个文件,如下所示:
cmd > log 2>&1
我需要更新它,以便在发生故障时根据错误信息采取一些措施。 我当然可以删除dup 2>&1
并从脚本中捕获stderr,但是这些错误消息不会进入日志文件以供参考。 尽pipe@lhunath接受的答案应该是这样,它将stdout
和stderr
redirect到不同的文件,这不是我想要的,但它帮助我提出了我需要的确切解决scheme:
(cmd 2> >(tee /dev/stderr)) > log
有了以上,日志将有一个stdout
和stderr
的副本,我可以从脚本捕获stderr
,而不必担心stdout
。
以下将适用于进程replace不可用的KornShell(ksh)
# 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>&-
这里真正的技巧是2>&1 1>&3
的序列,在我们的例子中, stderr
redirect到stdout
,并将stdout
redirect到描述符3
。 在这一点上, stderr
和stdout
还没有结合。
实际上, stderr
(作为stdin
)被传递到tee
,并logging到stderr.log
并redirect到描述符3。
描述符3
一直logging到combined.log
。 所以combined.log
包含stdout
和stderr
。