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

./aaa.sh | tee bbb.out

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


当前回答

发送到标准错误(STDERR)的编译错误可以通过以下方法重定向或保存到文件:

Bash:

gcc temp.c &> error.log

C shell (csh)

% gcc temp.c |& tee error.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"

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

cmd > log 2>&1

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

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

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

将标准错误重定向到一个文件,将标准输出显示到屏幕上,并将标准输出保存到一个文件:

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

要在屏幕上显示标准错误和标准输出,并将它们保存到文件中,您可以使用Bash的I/O重定向:

#!/bin/bash

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

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

# Run the command; tee standard output as normal, and send standard error
# 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

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

#!/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}

如果你使用Z shell (zsh),你可以使用多个重定向,所以你甚至不需要tee:

./cmd 1>&1 2>&2 1>out_file 2>err_file

在这里,您只是将每个流重定向到自身和目标文件。


完整的示例

% (echo "out"; echo "err">/dev/stderr) 1>&1 2>&2 1>/tmp/out_file 2>/tmp/err_file
out
err
% cat /tmp/out_file
out
% cat /tmp/err_file
err

注意,这需要设置MULTIOS选项(这是默认设置)。

MULTIOS 当尝试多次重定向时执行隐式tee或cats(参见重定向)。