I make use of wget to get files from an FTP server. I do this:
wget ftp://username:Password@XXX.XXX.XX.XX/public_html/images/audiothumbs/* .
After I download about a 1600 files, I get this error:
--2010-09-07 01:36:51-- http://./
Resolving .... failed: Name or service not known.
wget: unable to resolve host address `.'
FINISHED --2010-09-07 01:36:52--
Downloaded: 1998 files, 20M in 3m 31s (95.7 KB/s)
Did I get disconnected from the other server?
Secondly, if make use of the no-clobber option like so:
wget -r -nc ftp://username:Password@XXX.XXX.XX.XX/public_html/images/audiothumbs/* .
Why is it files still get overwritten?
Thanks all for any help