Home  >  Article  >  System Tutorial  >  Analysis of common options of wget command

Analysis of common options of wget command

王林
王林forward
2023-12-30 13:49:331072browse
Introduction 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: Record the execution process of the data in the specified log file;

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

-b: Run wget in the background;

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

-c: Continue to perform the last terminal task;

-C: 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: Set the following domain name list, separated by ",";

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

-h: Display command help information;

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

-l: Set the following directory list, multiple directories are separated by ",";

-L: Only follow the associated connection;

-r: recursive download method;

-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 文件的URL
2. Download files with limited speed
wget --limit-rate=300k 文件的URL
3. Support breakpoint resume download
wget -c 文件的URL
4. Download files in the background
wget -b 文件的URL
5. Test download link
wget --spider 文件的URL

Original address of this article: https://www.linuxprobe.com/wget.htmlAuthor: Wang Yi, Reviewer: Pang Zengbao

Original address of this article: https://www.linuxprobe.com/wget.htmlEditor: Wang Yi, Reviewer: None

Recommend some articles related to this article for you:

  • Open Source Linux Mobile System Evaluation and Comparison
  • Who said that the foundation is immutable, Mex Linux Build has done it
  • Linux improves system performance through ulimit
  • Google releases AI platform to allow developers to build their own models
  • Want to have your own Atom text editor plug-in?
  • Thousands With thousands of records, how can the database table structure change smoothly?
  • Alibaba Cloud RDS database is restored to local records
  • 2017 Popular Programming Languages ​​Ranking, is your language on the list?
  • Configuring Vim as the default editor on Linux
  • Xirxun: Zhang Ying successfully passed the RHCE certification in Shanghai on May 28.

The above is the detailed content of Analysis of common options of wget command. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:linuxprobe.com. If there is any infringement, please contact admin@php.cn delete