santosh dubey wrote:
>Hi all, > >Is it possible to recursively download a directory >from a ftp server?? >If yes , then by which ftp client or other sw?? > >Have a nice day > >skdubey > > > 1) WGET would be a nice and handy option wget --no-parent -cbkr ftp://ftp.domain.com/path/to/derectory/ The same should work for HTTP also. See the -c option is for resumes, -b for pushing the process to background, -k for convert links for local viewing, and -r for recursive retrieval --no-parent prevents the -r option from going upward a directory tree. There -l <num> to say "recurse into <num levels only>". In HTTP there's a follow links option, but I'd like you to find that out from the manual ($man wget) - there are pretty good examples 2) LFTP checkout the manual. There's mirror command. 3) I'd suggest that you check if RSYNC can be used or not. If you are afraid of command line, Use the mouse to findout what's under the <internet menu> And lastly, I hope you had your share of googling. Thanks Binulal _______________________________________________ ilugd mailinglist -- [email protected] http://frodo.hserus.net/mailman/listinfo/ilugd Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi http://www.mail-archive.com/[email protected]/
