summaryrefslogtreecommitdiff
path: root/doc/wget.info
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2021-03-05 10:06:12 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2021-03-05 10:06:12 +0900
commit1d8b652baba3df2da0eb42560205cab2ccb360e9 (patch)
treec546e30de11fdb2d144057d59b9c0d5f0f2539d5 /doc/wget.info
parent81f1c64e30d2ea59604a628bca9f1d04b1f82afb (diff)
downloadwget-1d8b652baba3df2da0eb42560205cab2ccb360e9.tar.gz
wget-1d8b652baba3df2da0eb42560205cab2ccb360e9.tar.bz2
wget-1d8b652baba3df2da0eb42560205cab2ccb360e9.zip
Imported Upstream version 1.14upstream/1.14
Diffstat (limited to 'doc/wget.info')
-rw-r--r--doc/wget.info171
1 files changed, 110 insertions, 61 deletions
diff --git a/doc/wget.info b/doc/wget.info
index d757e71..8a49bb8 100644
--- a/doc/wget.info
+++ b/doc/wget.info
@@ -1,8 +1,8 @@
This is wget.info, produced by makeinfo version 4.13 from wget.texi.
-INFO-DIR-SECTION Network Applications
+INFO-DIR-SECTION Network applications
START-INFO-DIR-ENTRY
-* Wget: (wget). The non-interactive network downloader.
+* Wget: (wget). Non-interactive network downloader.
END-INFO-DIR-ENTRY
This file documents the GNU Wget utility for downloading network
@@ -21,8 +21,8 @@ Documentation License".

File: wget.info, Node: Top, Next: Overview, Prev: (dir), Up: (dir)
-Wget 1.13.4
-***********
+Wget 1.14
+*********
This file documents the GNU Wget utility for downloading network data.
@@ -358,6 +358,10 @@ File: wget.info, Node: Logging and Input File Options, Next: Download Options,
that), which means that error messages and basic information still
get printed.
+`-nv'
+`--report-speed=TYPE'
+ Output bandwidth as TYPE. The only accepted value is `bits'.
+
`-i FILE'
`--input-file=FILE'
Read URLs from a local or external FILE. If `-' is specified as
@@ -1288,6 +1292,10 @@ File: wget.info, Node: HTTP Options, Next: HTTPS (SSL/TLS) Options, Prev: Dir
use `Content-Disposition' headers to describe what the name of a
downloaded file should be.
+`--content-on-error'
+ If this is set to on, wget will not skip the content when the
+ server responds with a http status code that indicates error.
+
`--trust-server-names'
If this is set to on, on a redirect the last component of the
redirection URL will be used as the local file name. By default
@@ -1424,6 +1432,34 @@ without SSL support, none of these options are available.
command is not used), EGD is never contacted. EGD is not needed
on modern Unix systems that support `/dev/random'.
+`--warc-file=FILE'
+ Use FILE as the destination WARC file.
+
+`--warc-header=STRING'
+ Use STRING into as the warcinfo record.
+
+`--warc-max-size=SIZE'
+ Set the maximum size of the WARC files to SIZE.
+
+`--warc-cdx'
+ Write CDX index files.
+
+`--warc-dedup=FILE'
+ Do not store records listed in this CDX file.
+
+`--no-warc-compression'
+ Do not compress WARC files with GZIP.
+
+`--no-warc-digests'
+ Do not calculate SHA1 digests.
+
+`--no-warc-keep-log'
+ Do not store the log file in a WARC record.
+
+`--warc-tempdir=DIR'
+ Specify the location for temporary files created by the WARC
+ writer.
+

File: wget.info, Node: FTP Options, Next: Recursive Retrieval Options, Prev: HTTPS (SSL/TLS) Options, Up: Invoking
@@ -1989,6 +2025,8 @@ in `.wgetrc'.
`-A ACCLIST'
`--accept ACCLIST'
`accept = ACCLIST'
+`--accept-regex URLREGEX'
+`accept-regex = URLREGEX'
The argument to `--accept' option is a list of file suffixes or
patterns that Wget will download during recursive retrieval. A
suffix is the ending part of a file, and consists of "normal"
@@ -2005,9 +2043,14 @@ in `.wgetrc'.
Of course, any number of suffixes and patterns can be combined
into a comma-separated list, and given as an argument to `-A'.
+ The argument to `--accept-regex' option is a regular expression
+ which is matched against the complete URL.
+
`-R REJLIST'
`--reject REJLIST'
`reject = REJLIST'
+`--reject-regex URLREGEX'
+`reject-regex = URLREGEX'
The `--reject' option works the same way as `--accept', only its
logic is the reverse; Wget will download all files _except_ the
ones matching the suffixes (or patterns) in the list.
@@ -2018,6 +2061,9 @@ in `.wgetrc'.
`bjork', use `wget -R "bjork*"'. The quotes are to prevent
expansion by the shell.
+ The argument to `--accept-regex' option is a regular expression which
+is matched against the complete URL.
+
The `-A' and `-R' options may be combined to achieve even better
fine-tuning of which files to retrieve. E.g. `wget -A "*zelazny*" -R
.ps' will download all the files having `zelazny' as a part of their
@@ -3316,8 +3362,8 @@ File: wget.info, Node: Distribution, Next: Web Site, Prev: Proxies, Up: Vari
Like all GNU utilities, the latest version of Wget can be found at the
master GNU archive site ftp.gnu.org, and its mirrors. For example,
-Wget 1.13.4 can be found at
-`ftp://ftp.gnu.org/pub/gnu/wget/wget-1.13.4.tar.gz'
+Wget 1.14 can be found at
+`ftp://ftp.gnu.org/pub/gnu/wget/wget-1.14.tar.gz'

File: wget.info, Node: Web Site, Next: Mailing Lists, Prev: Distribution, Up: Various
@@ -4263,7 +4309,7 @@ Concept Index
(line 71)
* bandwidth, limit: Download Options. (line 249)
* base for relative links in input file: Logging and Input File Options.
- (line 73)
+ (line 77)
* bind address: Download Options. (line 6)
* bug reports: Reporting Bugs. (line 6)
* bugs: Reporting Bugs. (line 6)
@@ -4277,6 +4323,7 @@ Concept Index
* comments, HTML: Recursive Retrieval Options.
(line 149)
* connect timeout: Download Options. (line 232)
+* Content On Error: HTTP Options. (line 307)
* Content-Disposition: HTTP Options. (line 296)
* Content-Length, ignore: HTTP Options. (line 156)
* continue retrieval: Download Options. (line 87)
@@ -4326,7 +4373,7 @@ Concept Index
* following ftp links: FTP Links. (line 6)
* following links: Following Links. (line 6)
* force html: Logging and Input File Options.
- (line 66)
+ (line 70)
* ftp authentication: FTP Options. (line 6)
* ftp password: FTP Options. (line 6)
* ftp time-stamping: FTP Time-Stamping Internals.
@@ -4353,7 +4400,7 @@ Concept Index
* incremental updating: Time-Stamping. (line 6)
* index.html: HTTP Options. (line 6)
* input-file: Logging and Input File Options.
- (line 43)
+ (line 47)
* Internet Relay Chat: Internet Relay Chat. (line 6)
* invoking: Invoking. (line 6)
* IP address, client: Download Options. (line 6)
@@ -4416,8 +4463,8 @@ Concept Index
* referer, http: HTTP Options. (line 208)
* reject directories: Directory-Based Limits.
(line 30)
-* reject suffixes: Types of Files. (line 34)
-* reject wildcards: Types of Files. (line 34)
+* reject suffixes: Types of Files. (line 39)
+* reject wildcards: Types of Files. (line 39)
* relative links: Relative Links. (line 6)
* remote encoding: Download Options. (line 491)
* reporting bugs: Reporting Bugs. (line 6)
@@ -4440,7 +4487,7 @@ Concept Index
* signal handling: Signals. (line 6)
* spanning hosts: Spanning Hosts. (line 6)
* specify config: Logging and Input File Options.
- (line 86)
+ (line 90)
* spider: Download Options. (line 197)
* SSL: HTTPS (SSL/TLS) Options.
(line 6)
@@ -4457,7 +4504,7 @@ Concept Index
* startup: Startup File. (line 6)
* startup file: Startup File. (line 6)
* suffixes, accept: Types of Files. (line 15)
-* suffixes, reject: Types of Files. (line 34)
+* suffixes, reject: Types of Files. (line 39)
* symbolic links, retrieving: FTP Options. (line 73)
* syntax of options: Option Syntax. (line 6)
* syntax of wgetrc: Wgetrc Syntax. (line 6)
@@ -4471,7 +4518,7 @@ Concept Index
* timeout, read: Download Options. (line 237)
* timestamping: Time-Stamping. (line 6)
* tries: Download Options. (line 12)
-* Trust server names: HTTP Options. (line 307)
+* Trust server names: HTTP Options. (line 311)
* types of files: Types of Files. (line 6)
* unlink: Download Options. (line 505)
* updating the archives: Time-Stamping. (line 6)
@@ -4486,6 +4533,8 @@ Concept Index
* wait: Download Options. (line 269)
* wait, random: Download Options. (line 293)
* waiting between retries: Download Options. (line 283)
+* WARC: HTTPS (SSL/TLS) Options.
+ (line 120)
* web site: Web Site. (line 6)
* Wget as spider: Download Options. (line 197)
* wgetrc: Startup File. (line 6)
@@ -4493,13 +4542,13 @@ Concept Index
* wgetrc location: Wgetrc Location. (line 6)
* wgetrc syntax: Wgetrc Syntax. (line 6)
* wildcards, accept: Types of Files. (line 15)
-* wildcards, reject: Types of Files. (line 34)
+* wildcards, reject: Types of Files. (line 39)
* Windows file names: Download Options. (line 353)

Tag Table:
-Node: Top805
+Node: Top809
Node: Overview2193
Node: Invoking5697
Node: URL Format6550
@@ -4507,50 +4556,50 @@ Ref: URL Format-Footnote-19140
Node: Option Syntax9242
Node: Basic Startup Options11919
Node: Logging and Input File Options12724
-Node: Download Options16190
-Node: Directory Options40391
-Node: HTTP Options43096
-Node: HTTPS (SSL/TLS) Options58219
-Node: FTP Options63894
-Node: Recursive Retrieval Options68360
-Node: Recursive Accept/Reject Options76228
-Node: Exit Status79706
-Node: Recursive Download80729
-Node: Following Links83902
-Node: Spanning Hosts84864
-Node: Types of Files87061
-Node: Directory-Based Limits91423
-Node: Relative Links94515
-Node: FTP Links95352
-Node: Time-Stamping96219
-Node: Time-Stamping Usage97867
-Node: HTTP Time-Stamping Internals99715
-Ref: HTTP Time-Stamping Internals-Footnote-1100991
-Node: FTP Time-Stamping Internals101190
-Node: Startup File102656
-Node: Wgetrc Location103570
-Node: Wgetrc Syntax104390
-Node: Wgetrc Commands105110
-Node: Sample Wgetrc120463
-Node: Examples125986
-Node: Simple Usage126347
-Node: Advanced Usage127768
-Node: Very Advanced Usage131480
-Node: Various132975
-Node: Proxies133680
-Node: Distribution136531
-Node: Web Site136873
-Node: Mailing Lists137168
-Node: Internet Relay Chat139234
-Node: Reporting Bugs139520
-Node: Portability142039
-Node: Signals143664
-Node: Appendices144347
-Node: Robot Exclusion144693
-Node: Security Considerations148488
-Node: Contributors149672
-Node: Copying this manual155246
-Node: GNU Free Documentation License155485
-Node: Concept Index180667
+Node: Download Options16286
+Node: Directory Options40487
+Node: HTTP Options43192
+Node: HTTPS (SSL/TLS) Options58471
+Node: FTP Options64767
+Node: Recursive Retrieval Options69233
+Node: Recursive Accept/Reject Options77101
+Node: Exit Status80579
+Node: Recursive Download81602
+Node: Following Links84775
+Node: Spanning Hosts85737
+Node: Types of Files87934
+Node: Directory-Based Limits92629
+Node: Relative Links95721
+Node: FTP Links96558
+Node: Time-Stamping97425
+Node: Time-Stamping Usage99073
+Node: HTTP Time-Stamping Internals100921
+Ref: HTTP Time-Stamping Internals-Footnote-1102197
+Node: FTP Time-Stamping Internals102396
+Node: Startup File103862
+Node: Wgetrc Location104776
+Node: Wgetrc Syntax105596
+Node: Wgetrc Commands106316
+Node: Sample Wgetrc121669
+Node: Examples127192
+Node: Simple Usage127553
+Node: Advanced Usage128974
+Node: Very Advanced Usage132686
+Node: Various134181
+Node: Proxies134886
+Node: Distribution137737
+Node: Web Site138075
+Node: Mailing Lists138370
+Node: Internet Relay Chat140436
+Node: Reporting Bugs140722
+Node: Portability143241
+Node: Signals144866
+Node: Appendices145549
+Node: Robot Exclusion145895
+Node: Security Considerations149690
+Node: Contributors150874
+Node: Copying this manual156448
+Node: GNU Free Documentation License156687
+Node: Concept Index181869

End Tag Table