vote up 1 vote down star

I need to have a script download all file in a given directory. I only have ftp access.

A quick test shows that I can't talk my ftp client into logging in from the command line. Even after trying Arnshea's answer it refuses to read the password from the file or stdin.

Even after logging in I can't download wild cards. (fixed with mget, thanks Arnshea)

Trying wget also fails.

I'd be fine with windows or Linux as long as it's simple.

flag

50% accept rate
What's the problem with wget? Why does it fail? – Yuval A Apr 6 at 19:35
wget can't use wildcards – BCS Apr 6 at 20:24

3 Answers

vote up 6 vote down

if you're on windows you can pass it a text file with the commands to execute...

e.g.,

ftp -s:ftptest.txt ftp.download.com

where ftptest.txt contains

anonymous
nowhere@noone.net
bin
hash
prompt
mget *.*
quit
link|flag
A similar technique should work on Unix as well. – Michael Burr Apr 6 at 19:45
Yep, it's hellaciously insecure but heh, security wasn't part of the OP :) Also, -A can be used in place of the first 2 lines. – Arnshea Apr 6 at 20:18
I can't use anonymous and it's not accepting a password from the file – BCS Apr 6 at 20:25
In the example nowhere@noone.net was the password. You'll need to change that to whatever the password is. Same goes for anonymous (change it to your user name). Don't use -A if you're not using anonymous – Arnshea Apr 6 at 20:36
That's what I was trying. As I said FTP won't take the password from the file. When I tried using stdin redirection, it gets to the password prompt and waits for input from the /keyboard/. – BCS Apr 6 at 20:43
show 2 more comments
vote up 1 vote down

WinSCP is scriptable

link|flag
vote up 1 vote down

wget should work. Try:

wget ftp://domain.com/full/path --ftp-user=username --ftp-password=password

link|flag
wget had problems with wildcards – BCS Apr 6 at 20:09

Your Answer

Get an OpenID
or

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