Skip to content

Instantly share code, notes, and snippets.

@balamaci
Created November 10, 2012 16:27
Show Gist options
  • Save balamaci/4051579 to your computer and use it in GitHub Desktop.
Save balamaci/4051579 to your computer and use it in GitHub Desktop.
SCP examples
Copy the file "foobar.txt" from a remote host to the local host:
$ scp your_username@remotehost.edu:foobar.txt /some/local/directory
Copy the file "foobar.txt" from the local host to a remote host:
$ scp foobar.txt your_username@remotehost.edu:/some/remote/directory
Copy the directory "foo" from the local host to a remote host's directory "bar":
$ scp -r foo your_username@remotehost.edu:/some/remote/directory/bar
Copy the file "foobar.txt" from the local host to a remote host using port 2264:
$ scp -P 2264 foobar.txt your_username@remotehost.edu:/some/remote/directory
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment