i know the basic usage of ftp to transfer files.
My requirement now is
I have 2 machines - dev1 and dev2
my home directory on dev1 is /home/biolink
my home directory on dev2 is /home/biolink
Now I needed to transfer all the files, directories, subdirectories that are all present in /home/biolink in dev1 to /home/biolink in dev2.
Is there a way I can ftp it in one shot ? When i tried my normal way
( ftp> put *.* ) from dev1, it only transferred all files that directly came under /home/biolink but not the directories and sub directories
Thanks