您的位置:首页 > 运维架构 > Shell

Linux程序中执行shell(程序、脚本)并获得输出结果

2013-03-27 10:14 946 查看
系统函数popen函数可以处理调用shell,其函数原型如下:

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

该函数的作用是创建一个管道,fork一个进程,然后执行shell,而shell的输出可以采用读取文件的方式获得。采用这种方法,既可以避免了创建临时文件,又不受输出字符的限制,推荐使用。

popen使用FIFO管道执行外部程序。

#include <stdio.h>

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

int pclose(FILE *stream);

popen 通过type是r还是w确定command的输入/输出方向,r和w是相对command的管道而言的。r表示command从管道中读入,w表示 command通过管道输出到它的 stdout, popen返回FIFO管道的文件流指针。pclose则用于使用结束后关闭这个指针。

#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#define BUFLEN (1024)

int readconsole(char *cmd, char *buf, int buflen) {
FILE *stream;
int readlen;

stream = popen(cmd, "r" );
readlen = fread( buf, sizeof(char), buflen, stream);

pclose( stream );
return readlen;
}

int main( void )
{
char buf[BUFLEN];
int readlen;

memset( buf, '\0', BUFLEN );
readlen = readconsole("/media/workspace/vincent/develop/app/exec/my_shell", buf, BUFLEN);
printf("myshell len=%d,buf=%s\n", readlen, buf);

return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: