-
Notifications
You must be signed in to change notification settings - Fork 5
/
trickle.1
46 lines (46 loc) · 880 Bytes
/
trickle.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
.\" trickle.1 - Copyright (c) 2017, Sijmen J. Mulder (see LICENSE.md)
.Dd October 25, 2017
.Dt TRICKLE 1
.Os
.Sh NAME
.Nm trickle
.Nd slow pipe
.Sh SYNOPSIS
.Nm trickle
.Op Fl b Ar bitrate
.Sh DESCRIPTION
.Nm
is used as part of a shell pipeline and has very low throughput,
hence the name: data trickles through the pipe.
By default, it passes on 600 bits per second,
but this can be configured:
.Bl -tag -width Ds
.It Fl b Ar bitrate
(For
.Sq baud ,
bits per second.)
Must be a number in range 50\(en57600.
A decimal separator and decimal
.Sq k
suffix can be used.
.El
.Sh EXAMPLES
Print
.Li README.md
to the terminal at 600 baud:
.Pp
.Dl $ trickle <README.md
.Pp
List files at 2600 baud:
.Pp
.Dl $ ls | trickle -b2600
.Pp
List files at 57600 baud:
.Pp
.Dl $ ls | trickle -b57.6k
.Sh SEE ALSO
.Xr pv 1 Fl L ,
.Xr tritty 1
.Sh AUTHORS
.An Sijmen J. Mulder
.Aq Mt ik@sjmulder.nl .