Skip to content

Latest commit

 

History

History
24 lines (13 loc) · 655 Bytes

README.md

File metadata and controls

24 lines (13 loc) · 655 Bytes

This project about understanding multiprocessing.
Program executed as follows:

./pipex file1 cmd1 cmd2 ... cmdN file2

where cmd are shell command with their parameters.

It behave the same as the shell command:

$> < file1 cmd1 | cmd2 | ... | cmdN > file2

Program supports << and >> when the first parameter is "hede_doc".

This:

$> ./pipex here_doc LIMITER cmd cmd1 file

behaves like this:

$> cmd << LIMITER | cmd1 >> file


Screen Shot 2022-09-04 at 19 19 43