Update text

This commit is contained in:
Martin Lund 2022-06-30 15:20:38 +02:00
parent 538e81cbe5
commit 3553fc765e
3 changed files with 5 additions and 4 deletions

View file

@ -38,6 +38,7 @@ when used in combination with [tmux](https://tmux.github.io).
* Support for delayed output * Support for delayed output
* Hexadecimal mode * Hexadecimal mode
* Log to file * Log to file
* Autogeneration of log filename
* Configuration file support * Configuration file support
* Select subconfigurations by name or pattern * Select subconfigurations by name or pattern
* Redirect I/O to socket for scripting or TTY sharing * Redirect I/O to socket for scripting or TTY sharing
@ -67,7 +68,7 @@ The command-line interface is straightforward as reflected in the output from
-t, --timestamp Enable line timestamp -t, --timestamp Enable line timestamp
--timestamp-format <format> Set timestamp format (default: 24hour) --timestamp-format <format> Set timestamp format (default: 24hour)
-L, --list-devices List available serial devices -L, --list-devices List available serial devices
-l, --log Enable logging to file -l, --log Enable log to file
--log-file <filename> Set log filename --log-file <filename> Set log filename
--log-strip Strip control characters and escape sequences --log-strip Strip control characters and escape sequences
-m, --map <flags> Map special characters -m, --map <flags> Map special characters

View file

@ -87,7 +87,7 @@ List available serial devices.
.TP .TP
.BR \-l ", " \-\-log .BR \-l ", " \-\-log
Enable logging to file. If no filename is provided the filename will be automatically generated. Enable log to file. If no filename is provided the filename will be automatically generated.
.TP .TP
.BR " \-\-log-file \fI<filename> .BR " \-\-log-file \fI<filename>
@ -245,7 +245,7 @@ Set output delay
.IP "\fBno-autoconnect" .IP "\fBno-autoconnect"
Disable automatic connect Disable automatic connect
.IP "\fBlog" .IP "\fBlog"
Enable logging to file Enable log to file
.IP "\fBlog-file" .IP "\fBlog-file"
Set log filename Set log filename
.IP "\fBlog-strip" .IP "\fBlog-strip"

View file

@ -82,7 +82,7 @@ void print_help(char *argv[])
printf(" -t, --timestamp Enable line timestamp\n"); printf(" -t, --timestamp Enable line timestamp\n");
printf(" --timestamp-format <format> Set timestamp format (default: 24hour)\n"); printf(" --timestamp-format <format> Set timestamp format (default: 24hour)\n");
printf(" -L, --list-devices List available serial devices\n"); printf(" -L, --list-devices List available serial devices\n");
printf(" -l, --log Enable logging to file\n"); printf(" -l, --log Enable log to file\n");
printf(" --log-file <filename> Set log filename\n"); printf(" --log-file <filename> Set log filename\n");
printf(" --log-strip Strip control characters and escape sequences\n"); printf(" --log-strip Strip control characters and escape sequences\n");
printf(" -m, --map <flags> Map special characters\n"); printf(" -m, --map <flags> Map special characters\n");