Categories
Uncategorized

Recursive FTP using wget

Here’s the scenario… you don’t have ssh access, but you do have ftp access, and need all the files…

wget -r ftp://username:password@domain.com/directory/

Let wget do it’s thing for a bit, and you should have all the files you need.

(Of course you really shouldn’t be running plain old insecure ftp when sftp is available…)