SSH – How to copy a folder from remote machine to the system using ssh or any other way

cpdirectoryremoterhelssh

Hi I need to copy a folder of size 885 MB from a remote machine to my system using ssh and port no is 1500

What is the command I can use to accomplish this

path of remote folder is

/u001/app/oracle/product/frmsrv/Nayifat/finnone 

and I need to copy the finnone folder to my system

Best Answer

Try scp or rsync over ssh,

scp -P 1500 -r name@host:/u001/app/oracle/product/frmsrv/Nayifat/finnone .
Related Question