bash – 将stdout和stderr重定向到带有前缀的单个文件

前端之家收集整理的这篇文章主要介绍了bash – 将stdout和stderr重定向到带有前缀的单个文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在编写一个bash脚本,需要将运行的命令的stdout和stderr输出重定向到单个文件,相应地为每行添加stderr或stdout.

有一个简单的方法来做到这一点?

annotate-output,从 Debiandevscripts,这样做.

其手册页中的示例:

$annotate-output make
21:41:21 I: Started make
21:41:21 O: gcc -Wall program.c
21:43:18 E: program.c: Couldn't compile,and took me ages to find out
21:43:19 E: collect2: ld returned 1 exit status
21:43:19 E: make: *** [all] Error 1
21:43:19 I: Finished with exitcode 2

猜你在找的Bash相关文章