diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-09-22 18:16:38 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-09-22 18:16:38 -0700 |
commit | 2944f70ee33de24b023ad1edb04246e4b71eef17 (patch) | |
tree | f9841815814e8bc75dbd22290542a7533f520aff /README |
*: initial commit
wye is an input-oriented tee variant
The name is derived from the plumbing name for a
directional tee, or "Y" intersection.
Diffstat (limited to 'README')
-rw-r--r-- | README | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +`wye` is an input variant of the `tee` utility + +Usage is like `tee`: wye [FILE]... + +wye always consumes from its stdin, the optional files specified are +read-multiplexed as alternative inputs to stdin. All reads are +performed using PIPE_BUF sized buffers which are the atomic units for +unix pipes, any read data is immediately written to stdout. + +Someone should try get this command added upstream in GNU Coreutils +upstream, and give me credit for the name. This implementation is a +quick and dirty hack and not particularly robust. |