当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《C:运行系统命令并获取输出?》经验,为你挑选了1个好方法。



1> 小智..:

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

#include 
#include 


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;
}


你应该使用`fgets(path,sizeof(path),fp)`而不是`sizeof(path)-1`.阅读手册
@jimi:你可以在你通过popen运行的shell命令中将stderr重定向到stdout,例如fp = popen("/ bin/ls/etc/2>&1","r");
推荐阅读
帆侮听我悄悄说星星
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有