Update linux/how-to-download-files-with-wget/index.md (#27288)

This commit is contained in:
Jakub Michalak
2019-03-27 02:06:21 +01:00
committed by Randell Dawson
parent 58b636eb35
commit 84787429fb

View File

@@ -35,4 +35,12 @@ wget ftp://ftp.gnu.org/gnu/wget/wget-1.19.5.tar.gz.sig
```
wget --limit-rate=100k http://ftp.gnu.org/gnu/wget/wget-1.19.5.tar.gz
```
### Download all listed files within a directory and its sub-directories (does not download embedded page elements):
```
wget --mirror --no-parent https://ftp.gnu.org/gnu/
```
### Download the contents of an URL via authenticated FTP:
```
wget --ftp-user=username --ftp-password=password ftp://example.com
```
You can play with remaining features of the ``wget`` utility