C:运行系统命令并获取输出?

时间:2009-03-14 16:54:12

标签: c linux system

  

可能重复:
  How can I run an external program from C and parse its output?

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

3 个答案:

答案 0 :(得分:226)

您需要“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)-1, fp) != NULL) {
    printf("%s", path);
  }

  /* close */
  pclose(fp);

  return 0;
}

答案 1 :(得分:4)

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

答案 2 :(得分:-7)

通常,如果该命令是外部程序,您可以使用操作系统来帮助您。

command > file_output.txt

所以你的C代码会做类似

的事情
exec("command > file_output.txt");

然后你可以使用file_output.txt文件。