From 84787429fbbaa026b4f1bba1cc2f6bc0b4fa7a81 Mon Sep 17 00:00:00 2001 From: Jakub Michalak Date: Wed, 27 Mar 2019 02:06:21 +0100 Subject: [PATCH] Update linux/how-to-download-files-with-wget/index.md (#27288) --- .../linux/how-to-download-files-with-wget/index.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/guide/english/linux/how-to-download-files-with-wget/index.md b/guide/english/linux/how-to-download-files-with-wget/index.md index 1564dc53e7..26c2782cc8 100644 --- a/guide/english/linux/how-to-download-files-with-wget/index.md +++ b/guide/english/linux/how-to-download-files-with-wget/index.md @@ -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