• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

build-aux/H07-Sep-2021-21,52818,246

doc/H03-May-2022-13,33510,981

fuzz/H03-May-2022-4,6103,856

gnulib_po/H07-May-2022-32,59625,084

lib/H03-May-2022-114,45576,808

m4/H07-Sep-2021-30,75428,780

msdos/H07-Sep-2021-300194

po/H03-May-2022-151,403124,448

src/H03-May-2022-63,43244,537

testenv/H03-May-2022-12,8199,840

tests/H03-May-2022-13,78310,741

util/H03-May-2022-2,0491,847

.tarball-versionH A D07-Sep-20217 21

.versionH A D07-Sep-20217 21

ABOUT-NLSH A D07-Sep-202191.6 KiB1,2831,244

AUTHORSH A D04-May-20202.3 KiB6341

COPYINGH A D04-May-202034.3 KiB675553

ChangeLogH A D07-Sep-2021882.6 KiB27,61517,973

GNUmakefileH A D07-Sep-20214.5 KiB12864

INSTALLH A D07-Sep-202115.4 KiB369287

MAILING-LISTH A D04-May-20201.1 KiB3123

Makefile.amH A D05-Jun-20214.3 KiB11056

Makefile.inH A D03-May-202283.2 KiB2,2132,072

NEWSH A D07-Sep-202140.1 KiB1,183758

READMEH A D05-Jun-20213.9 KiB9069

aclocal.m4H A D07-Sep-2021103.5 KiB2,9242,684

configureH A D07-Sep-20211.5 MiB61,48444,972

configure.acH A D06-Jun-202131.2 KiB1,016876

maint.mkH A D07-Sep-202165.6 KiB1,7801,159

README

1                                                          -*- text -*-
2GNU Wget
3========
4                  Current Web home: https://www.gnu.org/software/wget/
5
6GNU Wget is a free utility for non-interactive download of files from
7the Web.  It supports HTTP, HTTPS, and FTP protocols, as well as
8retrieval through HTTP proxies.
9
10It can follow links in HTML pages and create local versions of remote
11web sites, fully recreating the directory structure of the original
12site.  This is sometimes referred to as "recursive downloading."
13While doing that, Wget respects the Robot Exclusion Standard
14(/robots.txt).  Wget can be instructed to convert the links in
15downloaded HTML files to the local files for offline viewing.
16
17Recursive downloading also works with FTP, where Wget can retrieve a
18hierarchy of directories and files.
19
20With both HTTP and FTP, Wget can check whether a remote file has
21changed on the server since the previous run, and only download the
22newer files.
23
24Wget has been designed for robustness over slow or unstable network
25connections; if a download fails due to a network problem, it will
26keep retrying until the whole file has been retrieved.  If the server
27supports regetting, it will instruct the server to continue the
28download from where it left off.
29
30If you are behind a firewall that requires the use of a socks style
31gateway, you can get the socks library and compile wget with support
32for socks.
33
34Most of the features are configurable, either through command-line
35options, or via initialization file .wgetrc.  Wget allows you to
36install a global startup file (/usr/local/etc/wgetrc by default) for
37site settings.
38
39Wget works under almost all Unix variants in use today and, unlike
40many of its historical predecessors, is written entirely in C, thus
41requiring no additional software, such as Perl.  The external software
42it does work with, such as OpenSSL, is optional.  As Wget uses the GNU
43Autoconf, it is easily built on and ported to new Unix-like systems.
44The installation procedure is described in the INSTALL file.
45
46As with other GNU software, the latest version of Wget can be found at
47the master GNU archive site ftp.gnu.org, and its mirrors.  Wget
48resides at <ftp://ftp.gnu.org/pub/gnu/wget/>.
49
50Please report bugs in Wget to <bug-wget@gnu.org>.
51
52See the file `MAILING-LIST' for information about Wget mailing lists.
53Wget's home page is at <https://www.gnu.org/software/wget/>.
54
55If you would like to contribute code for Wget, please read
56CONTRIBUTING.md.
57
58Wget was originally written and mainained by Hrvoje Niksic.  Please see
59the file AUTHORS for a list of major contributors, and the ChangeLogs
60for a detailed listing of all contributions.
61
62
63Copyright (C) 1995-2021 Free Software Foundation, Inc.
64
65This program is free software; you can redistribute it and/or modify
66it under the terms of the GNU General Public License as published by
67the Free Software Foundation; either version 3 of the License, or
68(at your option) any later version.
69
70This program is distributed in the hope that it will be useful,
71but WITHOUT ANY WARRANTY; without even the implied warranty of
72MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
73GNU General Public License for more details.
74
75You should have received a copy of the GNU General Public License
76along with this program; if not, write to the Free Software
77Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
78USA.
79
80Additional permission under GNU GPL version 3 section 7
81
82If you modify this program, or any covered work, by linking or
83combining it with the OpenSSL project's OpenSSL library (or a
84modified version of that library), containing parts covered by the
85terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
86grants you additional permission to convey the resulting work.
87Corresponding Source for a non-source form of such a combination
88shall include the source code for the parts of OpenSSL used as well
89as that of the covered work.
90