Skip to content

Instantly share code, notes, and snippets.

@descubraomundo
Created July 24, 2013 23:10
Show Gist options
  • Save descubraomundo/6075467 to your computer and use it in GitHub Desktop.
Save descubraomundo/6075467 to your computer and use it in GitHub Desktop.
Download / Upload SSH
#Copy something from this system to some other system:
scp /path/to/local/file username@hostname:/path/to/remote/file
#Copy something from some system to some other system:
scp username1@hostname1:/path/to/file username2@hostname2:/path/to/other/file
#Copy something from another system to this system:
scp username@hostname:/path/to/remote/file /path/to/local/file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment