jacobbridges / cutiepipe

Simple shell utility for named pipes in Linux. Written purely in Python.
0 stars 0 forks source link

cutiepipes

Setup

Requires port 10000 to be available. (configurable in cutiepipe.py)

Usage

Piping entire files

# Shell session 1
$ cat data.json | cutiepipe

# Shell session 2
$ cutiepipe > data_copy.json

Piping streams

# Shell session 1
$ tail -f -n 1 data.csv | cutiepipe

# Shell session 2
$ cutiepipe > data_copy.csv