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

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.

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.