管道

 当从一个进程连接数据流到另一个进程时,我们使用术语管道(pipe)。我们通常是把一个进程的输出通过管道连接到另一个进程的输入。

在两个程序之间传递数据的方法是使用popen和pclose函数了

#include <stdio.h>

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

int pclose(FILE *stream_to_close);

#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

int main()
{
    FILE *read_fp;
    char buffer[BUFSIZ+1];
    int chars_read;
    memset(buffer,'\0',sizeof(buffer));
    read_fp = popen("uname -a","r");
    if(read_fp != NULL)
    {
       chars_read = fread(buffer,sizeof(char),BUFSIZ,read_fp);
       if(chars_read > 0)
       {
            printf("Output was:\n",buffer);
       }
       pclose(read_fp);
       exit(EXIT_SUCCESS);
    }
    exit(EXIT_FAILURE);
}


./popen1

Output was:Linux zhp

你可能感兴趣的:(Stream,command,File,buffer,FP,output)