How to Recursively Copy Files from a Remote Host using wget and FTP
wget -r ftp://username:password@your.ip.address/dir/*
OR
wget -r –user=your_username –password=your_password ftp://ftp.yoursite.com/dir/*
Note the * at the end of the commands, you will need this else wget just retrieves the single, index file







Comments
Post new comment