-
-
Save ldclakmal/c988e34d448ac6d2301f1374dc95fcb4 to your computer and use it in GitHub Desktop.
Commonly used set of commands for SCP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Copy the file "foobar.txt" from a remote host to the local host | |
$ scp username@remotehost:foobar.txt /some/local/directory | |
Copy the file "foobar.txt" from the local host to a remote host | |
$ scp foobar.txt username@remotehost:/some/remote/directory | |
Copy the directory "foo" from the local host to a remote host's directory "bar" | |
$ scp -r foo username@remotehost:/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 username@remotehost:/some/remote/directory |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment