运行系统命令并从控制台获取输出时出现混乱

时间:2011-12-28 04:13:39

标签: c

这里我从某处获得了一个程序来从控制台读取系统调用的输出。 但是为了获取错误消息,我在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;
}

1 个答案:

答案 0 :(得分:1)

0=stdin; 1=stdout; 2=stderr

如果您2>1将所有stderr重定向到名为1的文件。要将stderr实际重定向到stdout,您需要使用2>&1&1表示将句柄传递给stdout

详细讨论了here