summaryrefslogtreecommitdiff
path: root/doc/dlt-convert.1.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/dlt-convert.1.md')
-rw-r--r--doc/dlt-convert.1.md11
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/dlt-convert.1.md b/doc/dlt-convert.1.md
index c0df353..19f855a 100644
--- a/doc/dlt-convert.1.md
+++ b/doc/dlt-convert.1.md
@@ -6,7 +6,7 @@
# SYNOPSIS
-**dlt-convert** \[**-h**\] \[**-a**\] \[**-x**\] \[**-m**\] \[**-s**\] \[**-o** filename\] \[**-v**\] \[**-c**\] \[**-f** filterfile\] \[**-b** number\] \[**-e** number\] \[**-w**\] file1 \[file2\] \[file3\]
+**dlt-convert** \[**-h**\] \[**-a**\] \[**-x**\] \[**-m**\] \[**-s**\] \[**-t**\] \[**-o** filename\] \[**-v**\] \[**-c**\] \[**-f** filterfile\] \[**-b** number\] \[**-e** number\] \[**-w**\] file1 \[file2\] \[file3\]
# DESCRIPTION
@@ -63,6 +63,10 @@ Use two files and Output file to join DLT files.
: Follow dlt file while file is increasing.
+-t
+
+: Handling the compressed input files (tar.gz).
+
# EXAMPLES
Convert DLT file into ASCII:
@@ -71,9 +75,12 @@ Convert DLT file into ASCII:
Cut a specific range, e.g. from message 1 to message 3 from a file called log.dlt and store the result to a file called newlog.dlt:
**dlt-convert -b 1 -e 3 -o newlog.dlt log.dlt**
-Paste two dlt files log1.dlt and log2.dlt to a new file called newlog.dlt::
+Paste two dlt files log1.dlt and log2.dlt to a new file called newlog.dlt:
**dlt-convert -o newlog.dlt log1.dlt log2.dlt**
+Handle the compressed input files and join inputs into a new file called newlog.dlt:
+ **dlt-convert -t -o newlog.dlt log1.dlt compressed_log2.tar.gz**
+
# EXIT STATUS
Non zero is returned in case of failure.