teed.8 - teed - A multiplex relay tee(1) daemon.
HTML git clone git://bitreich.org/teed git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/teed
DIR Log
DIR Files
DIR Refs
DIR Tags
DIR README
DIR 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 "in".
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 20h@r-36.net