https://github.com/t-m-e/pipes
A study on pipes. How to pipe between processes.
https://github.com/t-m-e/pipes
c named-pipe named-pipes pipes redirection redirections stdin stdin-redirection stdout stdout-redirection unnamed-pipe
Last synced: 3 months ago
JSON representation
A study on pipes. How to pipe between processes.
- Host: GitHub
- URL: https://github.com/t-m-e/pipes
- Owner: t-m-e
- Created: 2023-12-28T23:33:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-01T22:57:29.000Z (over 1 year ago)
- Last Synced: 2025-01-20T10:48:49.329Z (5 months ago)
- Topics: c, named-pipe, named-pipes, pipes, redirection, redirections, stdin, stdin-redirection, stdout, stdout-redirection, unnamed-pipe
- Language: C
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pipes
This repo serves as an example for how pipes can be used with tested working examples.
I hope you get as much use of this as I did.## Tests
- [x] Pipe to STDIN
- [x] Pipe to STDOUT
- [x] Pipe to STDIN & STDOUT
- [x] Named Pipe to STDIN
- [x] Named Pipe to STDOUT
- [x] Named Pipe to STDIN & STDOUT
- [ ] Named Pipe fork() -> exec()