https://github.com/krisleech/pipes
Toy app using pipes to communicate between two processes.
https://github.com/krisleech/pipes
Last synced: 9 months ago
JSON representation
Toy app using pipes to communicate between two processes.
- Host: GitHub
- URL: https://github.com/krisleech/pipes
- Owner: krisleech
- Created: 2013-02-21T23:38:56.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-02-21T23:40:13.000Z (over 13 years ago)
- Last Synced: 2025-09-08T16:12:52.619Z (9 months ago)
- Language: Shell
- Size: 105 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PIPES
## Install
Create a pipe:
$ mkfifo runner
## Usage
$ ./listen
$ ./say
`listen` will wait for and execute messages on the `runner` pipe until terminated.
`say` sends a message `ls -al` to the `runner` pipe.