popen函数执行命令后,返回一个指向该命令输出的文件句柄,接下来就可以用fgets等文件操作函数去读取输出结果。

#include <stdio.h>

FILE *popen(const char *command, const char *type);

int pclose(FILE *stream);
type的参数只能是“r”或"w"

例如

#include<stdio.h>
#include<string.h>
int main(int argc,char*argv[]){
	FILE *fstream=NULL;  
	char buff[1024];
	memset(buff,0,sizeof(buff));
	if(NULL==(fstream=popen("ls -l","r")))  
	{ 
		fprintf(stderr,"execute command failed: %s",strerror(errno));  
		return -1;  
	} 
	if(NULL!=fgets(buff, sizeof(buff), fstream)) 
	{ 
		printf("%s",buff);
	} 
	else
	{
		pclose(fstream);
		return -1;
	}
	pclose(fstream);
	return 0; 
}



GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:4 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐