Created
May 10, 2018 11:46
-
-
Save akkefa/4ad205bbb58206ef851c25227514e428 to your computer and use it in GitHub Desktop.
Transferring files over SSH
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 from local machine to remote machine | |
scp localfile user@host:/path/to/whereyouwant/thefile | |
# copy from remote machine to local machine | |
scp user@host:/path/to/remotefile localfile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment