Detailed explanation of commonly used wget parameters

wget is a free tool that automatically downloads files from the Internet. It supports downloading through the three most common TCP/IP protocols: HTTP, HTTPS, and FTP, and can use HTTP proxy. The name "wget" comes from the combination of "World Wide Web" and "get". This article explains in detail the use of wget parameters and usage. I hope it will be helpful for everyone to understand the use of wget.

What does it mean to automatically download files? In fact, it means: wget can be executed in the background after the user exits the system. This means that you can log in to the system, start a wget download task, and then exit the system. Wget will execute in the background until the task is completed. Compared with most other browsers that require continuous user participation when downloading large amounts of data, this saves a lot of time. Big trouble. Then let’s take a look at the specific usage.

1. How to use

Format: wget [options] [parameters]

The parameters are: URL address.

The options are as follows:

-a<log file>: Record the execution process of the data in the specified log file;

-A<suffix name>: Specify the suffix name of the file to be downloaded. Use commas to separate multiple suffix names;

-b: Run wget in the background;

-B<connection address>: Set the base address of the reference connection address;

-c: Continue to perform the last terminal task;

-C<flag>: Set the server data block function flag on to activate, off to close, and the default value is on;

-d: Debug mode running command;

-D <domain name list>: Set the domain name list to follow, and the domain names are separated by ",";

-e<command>: Execute the specified command as part of the file ".wgetrc";

-h: Display command help information;

-i<file>: Get the URL address to be downloaded from the specified file;

-l<directory list>: Set the directory list to follow. Multiple directories are separated by ",";

-L: Only follow associated connections;

-r: recursive download mode;

-nc: When the file exists, the downloaded file does not overwrite the original file;

-nv: Only updates and error messages are displayed when downloading, and the detailed execution process of the command is not displayed;

-q: Do not display the instruction execution process;

-nh: Do not query the host name;

-v: Display detailed execution process;

-V: Display version information;

--passive-ftp: Use passive mode PASV to connect to the FTP server;

--follow-ftp: Download the FTP connection file from the HTML file.

2. Let’s give an example~

1. Download a single file

wget file URL

2. Download files with limited speed

wget --limit-rate=300k URL of the file

3. Support breakpoint resume download

wget -c file URL

4. Download files in the background

wget -b file URL

5. Test download link

wget --spider The URL of the file

Guess you like

Origin blog.csdn.net/yaxuan88521/article/details/133418514