blob: e57b6c3f61ad53dbabb64ecd0bcdd35f113cc95f (
plain)
1
2
3
4
5
6
7
8
9
10
11
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.
|