mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Download the new `--progress' option.
This commit is contained in:
parent
4f91014e3f
commit
dc3f406061
@ -1,3 +1,8 @@
|
|||||||
|
2001-11-23 Hrvoje Niksic <hniksic@arsdigita.com>
|
||||||
|
|
||||||
|
* wget.texi (Download Options): Document the new `--progress'
|
||||||
|
option.
|
||||||
|
|
||||||
2001-11-22 Hrvoje Niksic <hniksic@arsdigita.com>
|
2001-11-22 Hrvoje Niksic <hniksic@arsdigita.com>
|
||||||
|
|
||||||
* wget.texi (Proxies): Fix typo.
|
* wget.texi (Proxies): Fix typo.
|
||||||
|
@ -15,8 +15,8 @@
|
|||||||
@end iftex
|
@end iftex
|
||||||
|
|
||||||
@c This should really be auto-generated!
|
@c This should really be auto-generated!
|
||||||
@set VERSION 1.7.1
|
@set VERSION 1.8-dev
|
||||||
@set UPDATED June 2001
|
@set UPDATED November 2001
|
||||||
|
|
||||||
@dircategory Net Utilities
|
@dircategory Net Utilities
|
||||||
@dircategory World Wide Web
|
@dircategory World Wide Web
|
||||||
@ -611,26 +611,31 @@ Another instance where you'll get a garbled file if you try to use
|
|||||||
Note that @samp{-c} only works with @sc{ftp} servers and with @sc{http}
|
Note that @samp{-c} only works with @sc{ftp} servers and with @sc{http}
|
||||||
servers that support the @code{Range} header.
|
servers that support the @code{Range} header.
|
||||||
|
|
||||||
|
@cindex progress indicator
|
||||||
@cindex dot style
|
@cindex dot style
|
||||||
@cindex retrieval tracing style
|
@item --progress=@var{type}
|
||||||
@item --dot-style=@var{style}
|
Select the type of the progress indicator you wish to use. Legal
|
||||||
Set the retrieval style to @var{style}. Wget traces the retrieval of
|
indicators are ``dot'' and ``bar''.
|
||||||
each document by printing dots on the screen, each dot representing a
|
|
||||||
fixed amount of retrieved data. Any number of dots may be separated in
|
|
||||||
a @dfn{cluster}, to make counting easier. This option allows you to
|
|
||||||
choose one of the pre-defined styles, determining the number of bytes
|
|
||||||
represented by a dot, the number of dots in a cluster, and the number of
|
|
||||||
dots on the line.
|
|
||||||
|
|
||||||
With the @code{default} style each dot represents 1K, there are ten dots
|
The ``dot'' indicator is used by default. It traces the retrieval by
|
||||||
in a cluster and 50 dots in a line. The @code{binary} style has a more
|
printing dots on the screen, each dot representing a fixed amount of
|
||||||
``computer''-like orientation---8K dots, 16-dots clusters and 48 dots
|
downloaded data.
|
||||||
per line (which makes for 384K lines). The @code{mega} style is
|
|
||||||
suitable for downloading very large files---each dot represents 64K
|
When using the dotted retrieval, you may also set the @dfn{style} by
|
||||||
retrieved, there are eight dots in a cluster, and 48 dots on each line
|
specifying the type as @samp{dot:@var{style}}. Different styles assign
|
||||||
(so each line contains 3M). The @code{micro} style is exactly the
|
different meaning to one dot. With the @code{default} style each dot
|
||||||
reverse; it is suitable for downloading small files, with 128-byte dots,
|
represents 1K, there are ten dots in a cluster and 50 dots in a line.
|
||||||
8 dots per cluster, and 48 dots (6K) per line.
|
The @code{binary} style has a more ``computer''-like orientation---8K
|
||||||
|
dots, 16-dots clusters and 48 dots per line (which makes for 384K
|
||||||
|
lines). The @code{mega} style is suitable for downloading very large
|
||||||
|
files---each dot represents 64K retrieved, there are eight dots in a
|
||||||
|
cluster, and 48 dots on each line (so each line contains 3M).
|
||||||
|
|
||||||
|
Specifying @samp{--progress=bar} will draw a nice ASCII progress bar
|
||||||
|
graphics (a.k.a ``thermometer'' display) to indicate retrieval. If the
|
||||||
|
output is not a TTY, this option will be ignored, and Wget will revert
|
||||||
|
to the dot indicator. If you want to force the bar indicator, use
|
||||||
|
@samp{--progress=bar:force}.
|
||||||
|
|
||||||
@item -N
|
@item -N
|
||||||
@itemx --timestamping
|
@itemx --timestamping
|
||||||
@ -1977,9 +1982,6 @@ the retrieval (50 by default).
|
|||||||
@item dot_spacing = @var{n}
|
@item dot_spacing = @var{n}
|
||||||
Specify the number of dots in a single cluster (10 by default).
|
Specify the number of dots in a single cluster (10 by default).
|
||||||
|
|
||||||
@item dot_style = @var{string}
|
|
||||||
Specify the dot retrieval @dfn{style}, as with @samp{--dot-style}.
|
|
||||||
|
|
||||||
@item exclude_directories = @var{string}
|
@item exclude_directories = @var{string}
|
||||||
Specify a comma-separated list of directories you wish to exclude from
|
Specify a comma-separated list of directories you wish to exclude from
|
||||||
download---the same as @samp{-X} (@pxref{Directory-Based Limits}).
|
download---the same as @samp{-X} (@pxref{Directory-Based Limits}).
|
||||||
@ -2085,6 +2087,10 @@ and @samp{.pm} (Perl module) files download files using @samp{wget
|
|||||||
Set your @sc{ftp} password to @var{password}. Without this setting, the
|
Set your @sc{ftp} password to @var{password}. Without this setting, the
|
||||||
password defaults to @samp{username@@hostname.domainname}.
|
password defaults to @samp{username@@hostname.domainname}.
|
||||||
|
|
||||||
|
@item progress = @var{string}
|
||||||
|
Set the type of the progress indicator. Legal types are ``dot'' and
|
||||||
|
``bar''.
|
||||||
|
|
||||||
@item proxy_user = @var{string}
|
@item proxy_user = @var{string}
|
||||||
Set proxy authentication user name to @var{string}, like @samp{--proxy-user}.
|
Set proxy authentication user name to @var{string}, like @samp{--proxy-user}.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user