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.
|
|
|
|
|
|
|
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. |
||
|
|
|
|
If you can use |
||
|
|
|
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! |
||
|
|
|
|
|
||
|
|
|
|
If you can, I strongly suggest you |
||
|
|
|
|
Use WGet instead. It supports HTTP and FTP protocols.
Good Luck! reference: http://linux.about.com/od/commands/l/blcmdl1_wget.htm |
||
|
|
|
|
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/ |
||
|
|
|
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. |
||
|
|
|
|
I would use scp -rp user@host:/home/me . |
||
|
|
