blob: 8b7f5e0ad43e6fd3874d94eae4ffb77d49c587d7 (
plain)
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
47
48
49
50
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Language" content="en" />
<title>s6: the s6-tai64n program</title>
<meta name="Description" content="s6: the s6-tai64n program" />
<meta name="Keywords" content="s6 command s6-tai64n filter timestamp TAI64 TAI64N" />
<!-- <link rel="stylesheet" type="text/css" href="http://skarnet.org/default.css" /> -->
</head>
<body>
<p>
<a href="index.html">s6</a><br />
<a href="http://skarnet.org/software/">Software</a><br />
<a href="http://skarnet.org/">skarnet.org</a>
</p>
<h1> The s6-tai64n program </h1>
<p>
s6-tai64n acts as a filter, reading from stdin and writing to stdout.
It prepends lines with a
<a href="http://skarnet.org/software/skalibs/libstddjb/tai.html#timestamp">TAI64N
timestamp</a> and a space.
</p>
<h2> Interface </h2>
<pre>
s6-tai64n
</pre>
<ul>
<li> s6-tai64n exits 0 when it sees the end of stdin. If there's an
unfinished line, s6-tai64n processes it, adds a newline character to it,
and writes it before exiting. </li>
</ul>
<h2> Notes </h2>
<p>
s6-tai64n does neither "line buffering" nor "block buffering". It does
<em>optimal buffering</em>, i.e. it flushes its output buffer every time
it risks blocking on input. Every filter should behave this way, whether
its output is a tty or not: it's simpler and more efficient in every
case.
</p>
</body>
</html>
|