Showing posts with label download. Show all posts
Showing posts with label download. Show all posts

Use Wget for downloading from FTP with username and Password

Hi , We all know we can use wget to download files from command-line.

Downloading files from FTP can be done but for with username and password you have to scroll manpage a lot.


wget --user <username> --password <password> ftp://xxx.xxx.xxx.xxx/dir/file/download


to resume

wget -c --user <username> --password <password> ftp://xxx.xxx.xxx.xxx/dir/file/download

How to Download Total website by using Wget


How to Download Total website by using Wget


If you would like to download a whole website pages then you can do it wget.
wget is a command-line download manager,installed by default in almost all linux operating systems.
Syntax

wget -rkp -l3 -np -nH --cut-dirs=1 [URL]



Example

wget -rkp -l3 -np -nH --cut-dirs=1 http://ss64.com/bash/aspell.html