管道 pipeshell
1、概述數組
2、函數函數
[a] pipespa
#include <unistd.h> int pipe(int pipefd[2]) //成功返回 0,出錯返回 -1
[b] popen / pclose操作系統
#include <stdio.h> FILE *popen(const char *cmd, const char *type) //成功返回 FILE 流指針,出錯返回 NULL int pclose(FILE *stream) //成功返回 0,出錯返回 -1
命名管道 FIFO指針
1、概要code
2、函數blog
[a] mkfifo繼承
#include <sys/types.h> #include <sys/stat.h> int mkfifo(const char *path, mode_t mode) //成功返回 0,出錯返回 -1