-
-
Save DoguD/102e013de88f79aae6c11877a1dad71d to your computer and use it in GitHub Desktop.
Multiple pipes in C
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
** pipex.c - multipipes support | |
*/ | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <stdio.h> | |
/* | |
* loop over commands by sharing | |
* pipes. | |
*/ | |
static void | |
pipeline(char ***cmd) | |
{ | |
int fd[2]; | |
pid_t pid; | |
int fdd = 0; /* Backup */ | |
while (*cmd != NULL) { | |
pipe(fd); /* Sharing bidiflow */ | |
if ((pid = fork()) == -1) { | |
perror("fork"); | |
exit(1); | |
} | |
else if (pid == 0) { | |
dup2(fdd, 0); | |
if (*(cmd + 1) != NULL) { | |
dup2(fd[1], 1); | |
} | |
close(fd[0]); | |
execvp((*cmd)[0], *cmd); | |
exit(1); | |
} | |
else { | |
wait(NULL); /* Collect childs */ | |
close(fd[1]); | |
fdd = fd[0]; | |
cmd++; | |
} | |
} | |
} | |
/* | |
* Compute multi-pipeline based | |
* on a command list. | |
*/ | |
int | |
main(int argc, char *argv[]) | |
{ | |
char *ls[] = {"ls", "-al", NULL}; | |
char *rev[] = {"rev", NULL}; | |
char *nl[] = {"nl", NULL}; | |
char *cat[] = {"cat", "-e", NULL}; | |
char **cmd[] = {ls, rev, nl, cat, NULL}; | |
pipeline(cmd); | |
return (0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment