|
@@ -5,11 +5,13 @@
|
5
|
5
|
ttail \- timed tail for logfiles
|
6
|
6
|
.SH "SYNOSPIS"
|
7
|
7
|
.PP
|
8
|
|
-ttail [OPTION]\&.\&.\&. [FILE]\&.\&.\&.
|
|
8
|
+ttail [OPTION]\&.\&.\&. [FILE]\&.\&.\&.
|
9
|
9
|
.SH "DESCRIPTION"
|
10
|
10
|
.PP
|
11
|
11
|
Display loglines given a minimum date and/or a maximum date\&.
|
12
|
12
|
.PP
|
|
13
|
+For huge files (or a huge list of files) you should have better performance giving files as argument (thank's to binary search on file list and in files)\&.
|
|
14
|
+.PP
|
13
|
15
|
\fB-d --date-min=DATE\fP
|
14
|
16
|
.RS 4
|
15
|
17
|
Start to output loglines starting from this date
|
|
@@ -30,6 +32,11 @@ The date format present in the logfiles and used by -d --date-min and -m --date-
|
30
|
32
|
Set a constant prefix len to drop for each logline
|
31
|
33
|
.RE
|
32
|
34
|
.PP
|
|
35
|
+\fB-P --permissive\fP
|
|
36
|
+.RS 4
|
|
37
|
+Tell ttail to continue after some errors (prefix or date not found, invalid file, etc\&.)
|
|
38
|
+.RE
|
|
39
|
+.PP
|
33
|
40
|
\fB-r --re-prefix=REGEX\fP
|
34
|
41
|
.RS 4
|
35
|
42
|
Drop matching prefix for each logline
|
|
@@ -162,7 +169,7 @@ The O modifier specifies that the numerical input may be in an alternative local
|
162
|
169
|
%Oy The year (offset from C) using the locale's alternative numeric symbols\&.
|
163
|
170
|
.SH "Known limitations"
|
164
|
171
|
.PP
|
165
|
|
-Loglines has to be sorted\&.
|
|
172
|
+Files given as argument has to be sorted\&.
|
166
|
173
|
.SH "AUTHOR"
|
167
|
174
|
.PP
|
168
|
175
|
Written by Yann Weber <yann.weber@members.fsf.org>
|