摘要:
#include <unistd.h>#include <stdio.h>#include <stdlib.h>#include <string.h> int main(int argc, char **argv){ int fd[2]; int pid; pipe(fd); int rpipe = fd[0]; int wpipe = fd[1]; pid = fork(); if (pid == 0) { /* 子进程关掉读的那端,只用写的一端 */ close(rpipe); /* 把标准... 阅读全文