Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Crayfe/pipex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PIPEX

42 Project Description
This project implements the working of a well-known UNIX mechanism: the pipe. A pipe allows connecting the output of one command directly to the input of another, allowing data to flow between them without the need for intermediate storage. This facilitates the chaining of commands to perform complex processes efficiently.

Mandatory implementation

Your program should be executed as follows: ./pipex file1 command1 command2 file2

Running the pipex program should do the same as the following command: < file1 command1 | command2 > file2

Bonus implementation

Your program should be executed as follows: ./pipex file1 command1 command2 ... commandn file2

Running the pipex program should do the same as the following command: < file1 command1 | command2 | ... | commandn > file2

About

This project implements the working of a well-known UNIX mechanism: the pipe

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published