A 42 cursus project
The aim of the project is to create a program that replicates the |
(pipe) function in UNIX.
The program must be able to use arguments in the specified format
./pipex inputfile cmd1 cmd2 outputfile
The execution of the program should perform the same as the following UNIX command
< inputfile cmd1 | cmd2 > outputfile
Libft library is allowed in the project.
Early 2022 Version of pipex
Does not include bonuses