Downloading Folders to the Local via SSH

ssh

I am learning SSH as it seems there are no good SSH GUIs for Macs. I know how to make db dumps, cruise through the directories, etc, but the one last piece of the puzzle I need to learn is how to download folders/entire directories from the server and onto my local computer so I can then move them to another server.

Any help would be greatly appreciated.

Best Answer

scp -r user@host:/path/to/folder/ local-copy-of-folder

If you have SSH keys set up, you can tab-complete remote files/folders.

Related Question