本文主要是介绍popen/system,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
popen()函数通过创建一个管道,调用fork()产生一个子进程,执行一个shell以运行命令来开启一个进程,可以通过这个管道执行标准输入输出操作。这个管道必须由pclose()这个函数关闭。如果不使用pclose()关闭,会产生僵尸进程。popen()函数不等待shell命令执行完成就返回了。
popen的函数原型:
#include<stdio.h> FILE *popen(const char* command,const char* type);
#include<stdlib.h>
#include<stdio.h>
int main()
{FILE *fp = NULL;char buf[1000] = {0};fp = popen("ls -l","r");if(fp == NULL){return 0;}fread(buf,1000,1,fp);printf("%s",buf);pclose(fp);return 0;}
通过popen创建的管道调用fork(),子进程执行命令“ls -l”,并且“r”只读的方式。
再通过fread只读入fp中。
在Linux中我们可以通过system()来执行一个shell命令,system()在执行调用进程会一直等待shell命令执行完成才返回。
system函数原型
#inculde<stdlib.h>int system(const char* string)
#include<stdlib>
#include<stdio.h>
int main()
{
system("ls -a/etc/passwd/etc/shadow");
return 0;
}
system()会调用fork()产生子进程,由子进程来调用/bin/sh -c string来执行参数string字符串所代表的命令,命令执行完成后随即返回原调用的进程。
这篇关于popen/system的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!