diff --git a/README.md b/README.md index a75a993..084b26e 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ when used in combination with [tmux](https://tmux.github.io). * Autogeneration of log filename * Configuration file support * Activate sub-configurations by name or pattern - * Redirect I/O to socket for scripting or TTY sharing + * Redirect I/O to file or network socket for scripting or TTY sharing * Pipe input and/or output * Bash completion * Color support @@ -75,7 +75,7 @@ The command-line interface is straightforward as reflected in the output from --log-strip Strip control characters and escape sequences -m, --map Map special characters -c, --color 0..255|none|list Colorize tio text (default: 15) - -S, --socket Redirect I/O to socket + -S, --socket Redirect I/O to file or network socket -x, --hexadecimal Enable hexadecimal mode -v, --version Display version -h, --help Display help diff --git a/src/options.c b/src/options.c index 686ad30..21daea7 100644 --- a/src/options.c +++ b/src/options.c @@ -89,7 +89,7 @@ void print_help(char *argv[]) printf(" --log-strip Strip control characters and escape sequences\n"); printf(" -m, --map Map special characters\n"); printf(" -c, --color 0..255|none|list Colorize tio text (default: 15)\n"); - printf(" -S, --socket Redirect I/O to socket\n"); + printf(" -S, --socket Redirect I/O to file or network socket\n"); printf(" -x, --hexadecimal Enable hexadecimal mode\n"); printf(" -v, --version Display version\n"); printf(" -h, --help Display help\n");