Updated MAN and README page

This commit is contained in:
Martin Lund 2014-09-30 16:17:07 +02:00
parent c190efdad1
commit 838df819fd
3 changed files with 8 additions and 8 deletions

4
README
View file

@ -4,8 +4,8 @@
1. Introduction 1. Introduction
Go TTY or "gotty" is a really simple TTY terminal application which Go TTY or "gotty" is a really simple TTY terminal application which
features a very simple commandline interface to easily connect to TTY features a simple commandline interface to easily connect to TTY devices
devices for basic input/output. for basic input/output.
Go TTY was created because the author needed a simple no-nonsense TTY Go TTY was created because the author needed a simple no-nonsense TTY
terminal application to go do quick debugging. terminal application to go do quick debugging.

View file

@ -1,4 +1,4 @@
.TH "gotty" "1" "27 September 2014" .TH "gotty" "1" "30 September 2014"
.SH "NAME" .SH "NAME"
Go TTY \- The really simple TTY terminal application Go TTY \- The really simple TTY terminal application
@ -6,15 +6,15 @@ Go TTY \- The really simple TTY terminal application
.SH "SYNOPSIS" .SH "SYNOPSIS"
.PP .PP
.B gotty .B gotty
[<OPTIONS>] <DEVICE> [<options>] <tty device>
.SH "DESCRIPTION" .SH "DESCRIPTION"
.PP .PP
.B Go TTY .B Go TTY
or or
.B gotty .B gotty
is a really simple TTY terminal application which features a very simple is a really simple TTY terminal application which features a simple commandline
commandline interface to easily connect to TTY devices for basic input/output. interface to easily connect to TTY devices for basic input/output.
.SH "OPTIONS" .SH "OPTIONS"
@ -35,7 +35,7 @@ Set flow control (default: none).
Set stop bits (default: 1). Set stop bits (default: 1).
.TP .TP
.B \-p, \--parity even|odd|none .B \-p, \--parity odd|even|none
Set parity (default: none). Set parity (default: none).
.TP .TP

View file

@ -46,7 +46,7 @@ void print_options_help(char *argv[])
printf(" -d, --databits 5|6|7|8 Data bits (default: 8)\n"); printf(" -d, --databits 5|6|7|8 Data bits (default: 8)\n");
printf(" -f, --flow hard|soft|none Flow control (default: none)\n"); printf(" -f, --flow hard|soft|none Flow control (default: none)\n");
printf(" -s, --stopbits 1|2 Stop bits (default: 1)\n"); printf(" -s, --stopbits 1|2 Stop bits (default: 1)\n");
printf(" -p, --parity even|odd|none Parity (default: none)\n"); printf(" -p, --parity odd|even|none Parity (default: none)\n");
printf(" -n, --no-autoconnect Disable automatic connect\n"); printf(" -n, --no-autoconnect Disable automatic connect\n");
printf(" -v, --version Display version\n"); printf(" -v, --version Display version\n");
printf(" -h, --help Display help\n"); printf(" -h, --help Display help\n");