system函数头文件和相关参数信息
#include <stdlib.h>
int system(const char *command);
system()会调用fork()产生子进程,由子进程来调用/bin/sh-c command来执行参数command字符串所代表的命令,此命令执行完后随即返回原调用的进程。在调用system()期间SIGCHLD 信号会被暂时搁置,SIGINT和SIGQUIT 信号则会被忽略。
返回值:
如果fork()失败 返回-1:出现错误
如果exec()失败,表示不能执行Shell,返回值相当于Shell执行了exit(127)
如果执行成功则返回子Shell的终止状态
如果system()在调用/bin/sh时失败则返回127,其他失败原因返回-1。若参数command为空指针(NULL)返回非零值,如果system()调用成功则最后会返回执行shell命令后的返回值,但是此返回值也有可能为 system()调用/bin/sh失败所返回的127,因此最好能再检查errno来确认执行成功。
popen函数头文件和相关参数信息
#include <stdio.h>
FILE *popen(const char *command, const char *type);
int pclose(FILE *stream);
popen返回值:若成功则返回标准I/O流文件指针,否则返回NULL
pclose用来清理由popen所建立的管道及文件指针,参数是popen返回值
popen用创建管道的方式启动一个进程,并调用 shell,因为管道是被定义成单向的, 所以type参数只能定义成只读或者只写,不能是两者同时, 结果流也相应的是只读或者只写
popen 通过type是r还是w确定command的输入/输出方向,r和w是相对command的管道而言的
代码示例
#include <stdio.h>
#include <stdio.h>
int main()
{
char ret[1024] = {0};
FILE *fd;
fd = popen("ps","r");
int n_read = fread(ret,1,1024,fd);
printf("n_read = %d\n ret =\n %s",n_read,ret);
return 0;
}
运行结果