Improve usage and sync SYNOPSIS with usage.

This commit is contained in:
Ruslan Ermilov 2008-12-13 17:48:06 +00:00
parent e5022d8c10
commit e801aa4856
2 changed files with 19 additions and 12 deletions

View File

@ -37,17 +37,23 @@
.Nd retrieve a file by Uniform Resource Locator
.Sh SYNOPSIS
.Nm
.Op Fl 146AFMPRUadlmnpqrsv
.Op Fl 146AadFlMmnPpqRrsUv
.Op Fl B Ar bytes
.Op Fl S Ar bytes
.Op Fl T Ar seconds
.Op Fl N Ar file
.Op Fl o Ar file
.Op Fl S Ar bytes
.Op Fl T Ar seconds
.Op Fl w Ar seconds
.Op Fl h Ar host
.Op Fl c Ar dir
.Op Fl f Ar file
.Op Ar URL ...
.Ar URL ...
.Nm
.Op Fl 146AadFlMmnPpqRrsUv
.Op Fl B Ar bytes
.Op Fl N Ar file
.Op Fl o Ar file
.Op Fl S Ar bytes
.Op Fl T Ar seconds
.Op Fl w Ar seconds
.Fl h Ar host Fl f Ar file Oo Fl c Ar dir Oc
.Sh DESCRIPTION
The
.Nm
@ -59,7 +65,7 @@ command line.
.Pp
The following options are available:
.Bl -tag -width Fl
.It Fl \&1
.It Fl 1
Stop and return exit code 0 at the first successfully retrieved file.
.It Fl 4
Forces

View File

@ -711,10 +711,11 @@ fetch(char *URL, const char *path)
static void
usage(void)
{
fprintf(stderr, "%s\n%s\n%s\n",
"usage: fetch [-146AFMPRUadlmnpqrsv] [-N netrc] [-o outputfile]",
" [-S bytes] [-B bytes] [-T seconds] [-w seconds]",
" [-h host -f file [-c dir] | URL ...]");
fprintf(stderr, "%s\n%s\n%s\n%s\n",
"usage: fetch [-146AadFlMmnPpqRrsUv] [-B bytes] [-N file] [-o file] [-S bytes]",
" [-T seconds] [-w seconds] URL ...",
" fetch [-146AadFlMmnPpqRrsUv] [-B bytes] [-N file] [-o file] [-S bytes]",
" [-T seconds] [-w seconds] -h host -f file [-c dir]");
}