Pipex is a project written in C that simulates the behavior of the Unix pipeline (|
).
To install Pipex, clone the repository and compile the source code using make
:
git clone https://github.com/Maroua-netizen/pipex.git
cd pipex
make
The basic usage of Pipex is as follows:
./pipex file1 cmd1 cmd2 file2
Where:
file1
is the input file.
cmd1
is the first command.
cmd2
is the second command.
file2
is the output file.
This project is licensed under the MIT License. See the LICENSE file for details.