Last active
June 15, 2024 17:15
-
-
Save iomonad/a66f6e9cfb935dc12c0244c1e48db5c8 to your computer and use it in GitHub Desktop.
Multiple pipes in C (Not complete, only for concept purpose)
This file contains hidden or 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); | |
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
I think it has fd leak