- 论坛徽章:
- 2
|
本帖最后由 hitcser01 于 2015-10-25 10:24 编辑
2个极简单的测试程序:
1st:从stdout输出1行;从stderr输出1行;退出。
2nd:从stdin读取所有输入然后直接输出;退出。- % cat 1st.c
- #include <stdio.h>
- int main(void)
- {
- fprintf(stdout, "1st:stdout\n");
- fprintf(stderr, "1st:stderr\n");
- return 0;
- }
复制代码- % cat 2nd.c
- #include <stdio.h>
- int main(void)
- {
- char buf[1024];
- while (EOF != fscanf(stdin, "%s", buf)) {
- printf("2nd:%s\n", buf);
- }
- return 0;
- }
复制代码 测试场景1:这个能理解:- % nohup ./1st 2>/dev/null
- % cat nohup.out
- 1st:stdout
复制代码 测试场经2:这个不能理解:(为什么)- % nohup ./1st|./2nd 1>nohup.out 2>/dev/null
- nohup: ignoring input and redirecting stderr to stdout
- % cat nohup.out
- 2nd:1st:stderr
- 2nd:1st:stdout
复制代码 有没有哪位能解释下?场景2下,为什么“1st:stderr”也跑到了 nohup.out 里?
(感觉和shell解释执行命令的规则有关?) |
|