How to download folder recursively via Ftp
We can download the files and folders recursively from the server via ftp using the below command.
# wget -r ftp://user:pass@host/folder/
Here we need to replace the following thigs,
user=ftp username
pass=ftp user's password
host=ftp host
folder=download location
That's all....