Copy a whole folder from a remote computer
Assuming the remote server supports SSH and SCP, this guide is really helpful: SCP and SFTP for Unix and Mac OS X
To copy an entire folder from a remote server,
scp user@server_address:/path/to/folder/* /home/folder/
Example where I copy a folder called stuff
from example.com
and put it in the folder called stuff2
in my home directory.
Using the -r flag:
scp -r [email protected]:/stuff/ ~/stuff2/
Other way:
scp [email protected]:/stuff/* ~/stuff2/
Aside from command line options like SCP, SFTP or rsync, on Mac OS X you can also just use File Sharing by enabling it from System Preferences. Your computer will then show up on other Apple computers which have Bonjour enabled and you can drag & drop your files across. See Apple's docs at: Mac 101: File Sharing
You can also use a GUI client such as FileZilla as an FTP client / server. You can download this here: http://filezilla-project.org/ This works well even for very large transfers where the connection is liable to drop as you can re-queue those files much more easily than on the command line.