11

I normally ssh into my remote server in order to administrate my files using terminal for Mac OS X.

I don't understand how I retrieve (download) files from the server to my local computer, or send files from my local computer to the server (upload).

Chealion
  • 26,327

1 Answers1

23

To grab a file over SSH:

$ scp host:/path/to/file local_file

To send a file:

$ scp local_file host:/path/to/file

scp is "secure copy", a copy utility that sends files over an SSH connection.

mipadi
  • 4,518