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..
- Host: GitHub
- URL: https://github.com/azersd/42_pipex
- Owner: AzerSD
- Created: 2023-01-07T15:27:47.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-18T20:26:42.000Z (almost 3 years ago)
- Last Synced: 2025-08-16T17:02:04.731Z (10 months ago)
- Topics: 42, 42projects, pipex
- Language: C
- Homepage:
- Size: 129 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```