teed.8 - teed - A multiplex relay tee(1) daemon. | |
git clone git://bitreich.org/teed git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
teed.8 (638B) | |
--- | |
1 .Dd August 14, 2023 | |
2 .Dt TEED 8 | |
3 .Os | |
4 .Sh NAME | |
5 .Nm teed | |
6 .Nd tee daemon | |
7 .Sh SYNOPSIS | |
8 .Nm | |
9 .Sh DESCRIPTION | |
10 .Nm | |
11 sets up two UNIX domain socket files: | |
12 "in" and "out". | |
13 From these files | |
14 .Nm | |
15 can multiplex multiple "in" and "out" connections. | |
16 .Sh EXIT STATUS | |
17 .Ex -std | |
18 .Sh EXAMPLES | |
19 Run | |
20 .Nm | |
21 as a daemon. | |
22 .Bd -literal | |
23 teed & | |
24 .Ed | |
25 .Pp | |
26 Read the data from the UNIX domain socket "out" and write it to stdout. | |
27 .Bd -literal | |
28 socat unix:out - | |
29 .Ed | |
30 .Pp | |
31 Read from stdin and write the data "aaa\en" to the UNIX domain socket "i… | |
32 .Bd -literal | |
33 echo aaa | socat - unix:in | |
34 .Ed | |
35 .Sh SEE ALSO | |
36 .Xr socat 1 , | |
37 .Xr tee 1 | |
38 .Sh AUTHORS | |
39 .An Christoph Lohmann Aq Mt [email protected] |