|
|
1
11
annotate-output ,从 Debian 的 devscripts ,执行此操作。 其手册页中的示例: $ 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 |
|
|
2
10
试试这个:
第一个管道插入
圆括号用于对所有这些内容进行单个命令。它们告诉我们,进一步的重定向适用于括号内的内容,而不是
然后将标准错误重定向到标准输出
|