summaryrefslogtreecommitdiff
path: root/doc/dlt-convert.1.md
diff options
context:
space:
mode:
authorBui Nguyen Quoc Thanh <Thanh.BuiNguyenQuoc@vn.bosch.com>2019-07-17 13:59:51 +0700
committerSaya Sugiura <39760799+ssugiura@users.noreply.github.com>2019-09-13 08:48:31 +0900
commitb1193fa1f3b48587666202f513d9bfba719fdc6a (patch)
tree0251bd4fd27ad5eeb6d615035fef8ce686e0726a /doc/dlt-convert.1.md
parentd973560abe98290a215c2a23915620b6beecf2c1 (diff)
downloadDLT-daemon-b1193fa1f3b48587666202f513d9bfba719fdc6a.tar.gz
console: Tool to merge multiple DLT files
- Sort in dlt-sortbytimestamp: first sorted by time, second sorted by timestamp. - Support multiple compressed files in dlt-convert. These changes is based on use case: User can expects to join several dlt files which are compressed in tar.gz file (maybe per component). Moreover, currently the existing sort is only applicaple for single boot cycle. There should be a support for sorting multiple cyclic boots in one dlt file. Signed-off-by: Bui Nguyen Quoc Thanh <Thanh.BuiNguyenQuoc@vn.bosch.com>
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.