1DLT-CONVERT(1) DLT-CONVERT(1)
2
3
4
6 dlt-convert - Convert DLT Logging files into ASCII
7
9 dlt-convert [-h] [-a] [-x] [-m] [-s] [-t] [-o filename] [-v] [-c] [-f
10 filterfile] [-b number] [-e number] [-w] file1 [file2] [file3]
11
13 Read DLT files, print DLT messages as ASCII and store the messages
14 again. Use Ranges and Output file to cut DLT files. Use two files and
15 Output file to join DLT files.
16
17 OPTIONS
18 -h Display a short help text.
19
20 -a Print DLT file; payload as ASCII.
21
22 -x Print DLT file; payload as hex.
23
24 -m Print DLT file; payload as hex and ASCII.
25
26 -s Print DLT file; only headers.
27
28 -o Output messages in new DLT file.
29
30 -v Verbose mode.
31
32 -c Count number of messages.
33
34 -f Enable filtering of messages.
35
36 -b First messages to be handled.
37
38 -e Last message to be handled.
39
40 -w Follow dlt file while file is increasing.
41
42 -t Handling the compressed input files (tar.gz).
43
45 Convert DLT file into ASCII: dlt-convert -a mylog.dlt
46
47 Cut a specific range, e.g. from message 1 to message 3 from a file
48 called log.dlt and store the result to a file called newlog.dlt: dlt-
49 convert -b 1 -e 3 -o newlog.dlt log.dlt
50
51 Paste two dlt files log1.dlt and log2.dlt to a new file called
52 newlog.dlt: dlt-convert -o newlog.dlt log1.dlt log2.dlt
53
54 Handle the compressed input files and join inputs into a new file
55 called newlog.dlt: dlt-convert -t -o newlog.dlt log1.dlt com‐
56 pressed_log2.tar.gz
57
59 Non zero is returned in case of failure.
60
62 Alexander Wenzel (alexander.aw.wenzel (at) bmw (dot) de)
63
65 Copyright (C) 2015 BMW AG. License MPL-2.0: Mozilla Public License
66 version 2.0 <http://mozilla.org/MPL/2.0/>.
67
69 See Github issue: <https://github.com/GENIVI/dlt-daemon/issues>
70
72 dlt-daemon(1)
73
74
75
76 DLT-CONVERT(1)