Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 383 Bytes

README.md

File metadata and controls

11 lines (6 loc) · 383 Bytes

42_pipex

The aim of this project is to understand how pipes and redirections works. To do that, the program must receive file names and commands as arguments and execute it in a certain order.

To call the program, you should type:

./pipex <infile> <cmd1> <cmd2> <outfile>

The program should work the same way as the following shell command:

< infile cmd1 | cmd2 > outfile