An open API service indexing awesome lists of open source software.

https://github.com/azersd/42_pipex

pipex is a 42 school project aimed to better understand shell redirection and pipes..
https://github.com/azersd/42_pipex

42 42projects pipex

Last synced: 8 months ago
JSON representation

pipex is a 42 school project aimed to better understand shell redirection and pipes..

Awesome Lists containing this project

README

          

# 42pipex

pipex is a 42 school project aimed to better understand shell redirection and pipes..

This pipex program takes an input file, performs a command on it, pipes the result to another command which then writes its result to an output file. The result is virtually identical to this kind of shell command:
```
$ < input_file command1 | command2 > output file
```