在这里,我从某个地方得到一个程序,从控制台读取系统调用的输出。
但是为了获取错误消息,我在这行使用了2>&1而不是fp = popen("ping 4.2.2.2 2>&1", "r");
那么有谁能解释一下上面这行中fp = popen("ping 4.2.2.2", "r");的意义吗。
这是我的密码。

#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=stdin1=stdout2=stderr
如果这样做,则会将所有2>1重定向到名为stderr的文件要实际将1重定向到stderr,需要使用stdout2>&1意味着将句柄传递给&1
这已经被详细讨论过了。

关于c - 运行系统命令并从控制台获取输出时的困惑,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8651774/

10-15 15:23