vote up 0 vote down star

I'm looking for a secure alternative to doing something like this,

wget --mirror --preserve-permissions --directory-prefix=/hdd2/website-backups --exclude-directories=special,stats --ftp-user=user --ftp-password=pass ftp://ftp.domain.com

It's executed via cron.

The "--mirror" switch in that is important to me.

flag

Try to ask this on SuperUser or ServerFault, they might provide better answers. – Spoike Oct 27 at 13:24

3 Answers

vote up 1 vote down check

Have you tried rsync? (I've never tried it with FTP before, but I'd expect that something could be done. Definitely works with SFTP/SSH.)

link|flag
I did end up going with rsync. The manpage told me just about everything I needed to know, though I ended up having to specify the location of my keys with the "-i" (eye) flag. – joebert Nov 26 at 9:19
vote up 0 vote down

echo ftp://user%3Apassword@ftp.domain.com | wget -i -

or use .netrc to store passwords

or don't use wget?

link|flag
vote up 0 vote down

Not sure what you mean by "secure" here--you mean you'd like support for SFTP or FTPS?

If so, you could use Curl--but it doesn't do the recursive mirroring on its own; you'll need a script to do that.

Or there are other similar tools--here's a comparison chart where you might find one that fits the features you need.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.