Created
October 13, 2016 02:07
-
-
Save zhangchenchen/50df8b7b1e75ae1fc7aa78a78a1e891d to your computer and use it in GitHub Desktop.
download/upload file with 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
| download file: scp test.py [email protected]:/e:/ | |
| download dir: scp -r /opt/test [email protected]:/e:/ | |
| upload file: scp [email protected]:/e:/test.py /opt/test | |
| upload dir: scp -r [email protected]:/e:/test/ /opt/test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment