Merge pull request #47 from highvoltage/working
Properly escape minus signs so that they don't become hyphens
This commit is contained in:
commit
ae4267fbb8
|
@ -1,8 +1,8 @@
|
||||||
.TH "speedtest-cli" 1 "2014-01-26" "speedtest-cli"
|
.TH "speedtest-cli" 1 "2014-01-26" "speedtest-cli"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
speedtest-cli \- Test your bandwidth througput using speedtest.net
|
speedtest\-cli \- Test your bandwidth througput using speedtest.net
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.B speedtest-cli
|
.B speedtest\-cli
|
||||||
[OPTION]...
|
[OPTION]...
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
Speedtest.net is a web service for testing your broadband connection by downloading a file
|
Speedtest.net is a web service for testing your broadband connection by downloading a file
|
||||||
|
@ -12,48 +12,48 @@ from the command line.
|
||||||
Speedtest mini is a version of the Speedtest.net server that you can host locally.
|
Speedtest mini is a version of the Speedtest.net server that you can host locally.
|
||||||
|
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
Usage: speedtest-cli [OPTION...]
|
Usage: speedtest\-cli [OPTION...]
|
||||||
|
|
||||||
.B Help Options
|
.B Help Options
|
||||||
|
|
||||||
\fB\-h, --help\fR
|
\fB\-h, \-\-help\fR
|
||||||
.RS
|
.RS
|
||||||
Displays usage for the tool.
|
Displays usage for the tool.
|
||||||
.RE
|
.RE
|
||||||
|
|
||||||
.B Options
|
.B Options
|
||||||
|
|
||||||
\fB--share\fR
|
\fB\-\-share\fR
|
||||||
.RS
|
.RS
|
||||||
Generate and provide a URL to the speedtest.net share results image
|
Generate and provide a URL to the speedtest.net share results image
|
||||||
.RE
|
.RE
|
||||||
|
|
||||||
\fB--simple\fR
|
\fB\-\-simple\fR
|
||||||
.RS
|
.RS
|
||||||
Suppress verbose output, only show basic information
|
Suppress verbose output, only show basic information
|
||||||
.RE
|
.RE
|
||||||
|
|
||||||
\fB--list\fR
|
\fB\-\-list\fR
|
||||||
.RS
|
.RS
|
||||||
Display a list of speedtest.net servers sorted by distance
|
Display a list of speedtest.net servers sorted by distance
|
||||||
.RE
|
.RE
|
||||||
|
|
||||||
\fB--server SERVER\fR
|
\fB\-\-server SERVER\fR
|
||||||
.RS
|
.RS
|
||||||
Specify a server ID to test against
|
Specify a server ID to test against
|
||||||
.RE
|
.RE
|
||||||
|
|
||||||
\fB--mini MINI\fR
|
\fB\-\-mini MINI\fR
|
||||||
.RS
|
.RS
|
||||||
URL of the Speedtest Mini server
|
URL of the Speedtest Mini server
|
||||||
.RE
|
.RE
|
||||||
|
|
||||||
\fB--source SOURCE\fR
|
\fB\-\-source SOURCE\fR
|
||||||
.RS
|
.RS
|
||||||
Source IP address to bind to
|
Source IP address to bind to
|
||||||
.RE
|
.RE
|
||||||
|
|
||||||
\fB--version\fR
|
\fB\-\-version\fR
|
||||||
.RS
|
.RS
|
||||||
Show the version number and exit
|
Show the version number and exit
|
||||||
.RE
|
.RE
|
||||||
|
@ -62,22 +62,22 @@ Show the version number and exit
|
||||||
|
|
||||||
\fBAutomatically find closest server and start testing\fR
|
\fBAutomatically find closest server and start testing\fR
|
||||||
.RS
|
.RS
|
||||||
speedtest-cli
|
speedtest\-cli
|
||||||
.RE
|
.RE
|
||||||
|
|
||||||
\fBSpecify testing against server 1491\fR
|
\fBSpecify testing against server 1491\fR
|
||||||
.RS
|
.RS
|
||||||
speedtest-cli --server 1491
|
speedtest-cli \-\-server 1491
|
||||||
.RE
|
.RE
|
||||||
|
|
||||||
\fBTesting against Speedtest Mini\fR
|
\fBTesting against Speedtest Mini\fR
|
||||||
.RS
|
.RS
|
||||||
speedtest-cli --mini 172.18.66.1
|
speedtest-cli \-\-mini 172.18.66.1
|
||||||
.RE
|
.RE
|
||||||
|
|
||||||
.SH REPORTING BUGS
|
.SH REPORTING BUGS
|
||||||
Please file issues on the Github bug tracker: https://github.com/sivel/speedtest-cli
|
Please file issues on the Github bug tracker: https://github.com/sivel/speedtest\-cli
|
||||||
|
|
||||||
.SH AUTHORS
|
.SH AUTHORS
|
||||||
This manual page was written by Jonathan Carter <jonathan@ubuntu.com>
|
This manual page was written by Jonathan Carter <jonathan@ubuntu.com>
|
||||||
Speedtest-cli was written by Matt Martz <matt@sivel.net>
|
Speedtest\-cli was written by Matt Martz <matt@sivel.net>
|
||||||
|
|
Loading…
Reference in New Issue