我知道如何使用tee
写输出(STDOUT
中)aaa.sh
到bbb.out
,同时还在终端显示它:
./aaa.sh | tee bbb.out
我现在如何写STDERR
一个名为的文件ccc.out
,同时还显示它?
我假设您仍希望在终端上看到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,我们想要再次将tee
STDOUT 重定向到我们的STDERR.然后我们使用文件重定向将command
STDERR 重定向到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"
为什么不简单:
./aaa.sh 2>&1 | tee -a log
这只是简单地重定向stderr
到stdout
,所以T恤回应记录和屏幕.也许我错过了一些东西,因为其他一些解决方案看起来很复杂.
注意:从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}
要将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
换句话说,您希望将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.
如果使用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