这里我从某处获得了一个程序来从控制台读取系统调用的输出。
但是为了获取错误消息,我在2>&1
这行使用了fp = popen("ping 4.2.2.2 2>&1", "r");
而不是fp = popen("ping 4.2.2.2", "r");
所以有人可以解释我上面的2>&1
的重要性。
这是我的代码。
#include <stdio.h>
#include <stdlib.h>
int main( int argc, char *argv[] )
{
FILE *fp;
int status;
char path[1035];
/* Open the command for reading. */
fp = popen("ping 4.2.2.2 2>&1", "r");
if (fp == NULL) {
printf("Failed to run command\n" );
exit;
}
/* Read the output a line at a time - output it. */
while (fgets(path, sizeof(path)-1, fp) != NULL) {
printf("%s", path);
}
/* close */
pclose(fp);
return 0;
}
答案 0 :(得分:1)
0=stdin
; 1=stdout
; 2=stderr
如果您2>1
将所有stderr
重定向到名为1
的文件。要将stderr
实际重定向到stdout
,您需要使用2>&1
。 &1
表示将句柄传递给stdout
。
详细讨论了here。