This website works better with JavaScript
Home
Explore
Help
Sign In
kindring
/
md
Watch
0
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
8e8c863f73
Branches
Tags
master
md
/
linux
/
scp操作.md
scp操作.md
511 B
History
Raw
scp操作
上传
单文件上传至指定目录
命令列子
scp /local_file username@remotehost:/remote_file
解释
/local_file:本地文件路径
username:远程主机用户名
remotehost:远程主机地址
/remote_file:远程主机文件路径
拉取目录
命令列子
scp -r username@remotehost:/remote_dir /local_dir
解释
-r:递归复制整个目录
/remote_dir:远程主机目录路径
/local_dir:本地目录路径