I'm trying to ftp a folder using the command line ftp client, but so far I've only been able to use 'get' to get individual files.
|
You could rely on wget which usualy handles ftp get properly (at least in my own experience). I think it goes this way:
Hope this helps! EDIT: I had to specify the --user and --password commands to get it to work on Ubuntu |
|||||||||||||||||
|
|
If |
|||||
|
|
Try mget:
You might also need to switch off the prompt so it does not ask for every file (see the propmt command) But using scp or rsync over ssh is probably better than ftp if you can. To recap:
|
|||||||||||||
|
|
toggle the prompt by PROMPT command. Usage:
|
||||
|
|
Just to complement the answer given by Thibaut Barrère. I used
Note the double slash after the server name. If I don't put an extra slash the path is relative to the home directory of user.
|
|||
|
|
If you want to stick to command line FTP, you should try NcFTP. Then you can use get -R to recursively get a folder. You will also get completion. |
|||
|
|
|
There is 'ncftp' which is available for installation in linux. This works on the FTP protocol and can be used to download files and folders recursively. works on linux. Has been used and is working fine for recursive folder/file transfer. Check this link... http://www.ncftp.com/ |
|||
|
Use WGet instead. It supports HTTP and FTP protocols.
Good Luck! reference: http://linux.about.com/od/commands/l/blcmdl1_wget.htm |
|||
|
|
|
If you can, I strongly suggest you |
|||
|
|
|
|||||
|
|
If you can use |
|||
|
mget, it's not recursive at all. answer from Sep 22 '08 at 9:01 Thibaut Barrère is easier to understand but must add the option-l 0as mentioned in the comments – chriscatfr Nov 11 '12 at 22:12