162

可能重复:
如何从 C 运行外部程序并解析其输出?

我想在 linux 中运行一个命令并返回它输出的文本,但我希望这个文本打印到屏幕上。有没有比制作临时文件更优雅的方法?

4

2 回答 2

294

你想要“ popen ”功能。这是运行命令“ls /etc”并输出到控制台的示例。

#include <stdio.h>
#include <stdlib.h>


int main( int argc, char *argv[] )
{

  FILE *fp;
  char path[1035];

  /* Open the command for reading. */
  fp = popen("/bin/ls /etc/", "r");
  if (fp == NULL) {
    printf("Failed to run command\n" );
    exit(1);
  }

  /* Read the output a line at a time - output it. */
  while (fgets(path, sizeof(path), fp) != NULL) {
    printf("%s", path);
  }

  /* close */
  pclose(fp);

  return 0;
}
于 2009-03-14T17:01:06.767 回答
5

您需要某种进程间通信。使用管道或共享缓冲区。

于 2009-03-14T16:59:59.310 回答