what is the ftp command to transfer multiple directories from a server to another? i've tryied 'mput' but don't work becouse mput is just for file (not directories)
ftp commands quick question
Collapse
X
-
Tags: None
-
You can try -r parametr ... or something like help, help mput :-)
It depends on the FTP client you are using. It is not general to the FTP protocol itself, that is why the answer could not be definite. -
-
Comment
-
i use ftp via SSH from console lineOriginally posted by More Booze
I think you are able to do it via SSH, cant you use that?Comment
-
It says "multiple files". I think your FTP client is unable to put recursive directory trees. It can just handle multiple files uploading. Use better FTP client or onother method, e.g. mentioned before scp.Originally posted by michael2002
mput -r don't work
help mput:
ftp> help mput
mput send multiple files
ftp>
any others ideas?Comment
-
Rather than using the command "ftp" try "ncftp".
NcFTP is a more full featured ftp client that
includes recursive get and put with the "-r" option:
[[email protected]] $ ncftp -u username hostname.com
> put -r somedirFor historical display only. This information is not current:
support@bettercgi.com ICQ 7208627
Strongbox - The next generation in site security
Throttlebox - The next generation in bandwidth control
Clonebox - Backup and disaster recovery on steroidsComment


Comment