The goal of the Pipex project is to recreate the pipe system present in the bash.
- Exemple : ls | grep foo
Bonuses offer the possibility to recreate an infinity of pipes as well as the here_document function.
- Clone Repository
git clone https://github.com/vvaucoul/Pipex && cd Pipex
- Compilation
make
- Start
./pipex infile cmd1 cmd2 outfile
touch foo && ./pipex foo "echo bar" cat foo && cat foo
Result: "bar"