summaryrefslogtreecommitdiff
path: root/doc/dlt-convert.1.txt
diff options
context:
space:
mode:
authorChristoph Lipka <clipka@users.noreply.github.com>2019-02-12 10:32:13 +0100
committerGitHub <noreply@github.com>2019-02-12 10:32:13 +0100
commit1713e3913722d1222c968ca53326865d23a2b0ab (patch)
tree477489d98c7694fd8937debadb2fcf61b2f7fa3e /doc/dlt-convert.1.txt
parent4c4cc967ad46abae60f2f9bf5e47b65e8bcbb4b1 (diff)
downloadDLT-daemon-2.18.1.tar.gz
doc: Move all man pages to markdown files (#102)v2.18.1
All manpages have been removed, because they will be autogenerated from markdown files using pandoc.
Diffstat (limited to 'doc/dlt-convert.1.txt')
-rw-r--r--doc/dlt-convert.1.txt94
1 files changed, 0 insertions, 94 deletions
diff --git a/doc/dlt-convert.1.txt b/doc/dlt-convert.1.txt
deleted file mode 100644
index 9a09f6c..0000000
--- a/doc/dlt-convert.1.txt
+++ /dev/null
@@ -1,94 +0,0 @@
-DLT-CONVERT(1)
-=============
-:doctype: manpage
-
-NAME
-----
-dlt-convert - Convert DLT Logging files into ASCII
-
-SYNOPSIS
---------
-*dlt-convert* [-h] [-a] [-x] [-m] [-s] [-o filename] [-v] [-c] [-f filterfile] [-b number] [-e number] [-w] file1 [file2] [file3]
-
-DESCRIPTION
------------
-Read DLT files, print DLT messages as ASCII and store the messages again.
-Use Ranges and Output file to cut DLT files.
-Use two files and Output file to join DLT files.
-
-OPTIONS
--------
-*-h*::
- Display a short help text.
-
-*-a*::
- Print DLT file; payload as ASCII.
-
-*-x*::
- Print DLT file; payload as hex.
-
-*-m*::
- Print DLT file; payload as hex and ASCII.
-
-*-s*::
- Print DLT file; only headers.
-
-*-o*::
- Output messages in new DLT file.
-
-*-v*::
- Verbose mode.
-
-*-c*::
- Count number of messages.
-
-*-f*::
- Enable filtering of messages.
-
-*-b*::
- First messages to be handled.
-
-*-e*::
- Last message to be handled.
-
-*-w*::
- Follow dlt file while file is increasing.
-
-EXAMPLES
---------
-Start DLT daemon in background mode::
- *dlt-daemon -d*
-
-Start DLT daemon with own configuration::
- *dlt-daemon -c ~/my-dlt-configuration.cfg*
-
-Convert DLT file into ASCII::
- *dlt-convert -a mylog.dlt*
-
-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::
- *dlt-convert -o newlog.dlt log1.dlt log2.dlt*
-
-EXIT STATUS
------------
-Non zero is returned in case of failure.
-
-AUTHOR
-------
-Alexander Wenzel (alexander.aw.wenzel (at) bmw.de)
-
-COPYRIGHT
----------
-Copyright (C) 2015 BMW AG. License MPL-2.0: Mozilla Public License version 2.0 <http://mozilla.org/MPL/2.0/>.
-
-RESOURCES
----------
-Main web site: <http://projects.genivi.org/diagnostic-log-trace> +
-Mailinglist: <https://lists.genivi.org/mailman/listinfo/genivi-diagnostic-log-and-trace>
-
-SEE ALSO
---------
-dlt-daemon(1)
-