1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 06:22:07 +02:00

wget: Add subdirectory example (#1693)

This commit is contained in:
a-raccoon 2018-01-09 01:29:24 -07:00 committed by Agniva De Sarker
parent 7c9e7aafe1
commit 33e9cb17b3

View file

@ -19,6 +19,10 @@
`wget --mirror --page-requisites --convert-links --wait=3 {{https://example.com}}`
- Download all listed files within a directory and its sub-directories (does not download embedded page elements):
`wget --mirror --no-parent {{https://example.com/somepath/}}`
- Download the contents of an URL via authenticated FTP:
`wget --ftp-user={{username}} --ftp-password={{password}} {{ftp://example.com}}`