一 管道的作用
通常把一个进程的输出通过管道连接到另一个进程的输入。
二 popen和pclose函数
#include <stdio.h> FILE *popen(const char *command, //是要运行的程序名和相应的参数
const char *open_mode //必须是“r”或者“w”,如果是其它值,errno将返回EINVAL
); int pclose(FILE *stream_to_close);
popen() 函数通过创建一个管道,调用 fork 产生一个子进程,执行一个 shell 以运行命令来开启一个进程。
pclose()调用只在popen启动的进程结束后才返回,如果调用pclose函数时它仍在运行,pclose调用将等待该进程的结束。
例:
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> int main(){ FILE *read_fp; //要读取的文件描述符 char buffer[BUFSIZ+1]; //用来存储读到的文件信息 int chars_read; //实际读取的元素个数 memset(buffer,'