美文网首页Linux终端操作积累
scp命令在服务器上传下载文件

scp命令在服务器上传下载文件

作者: Solomon_Xie | 来源:发表于2019-01-19 01:55 被阅读0次
#Copy a local file to a remote host:
scp path/to/local_file remote_host:path/to/remote_file

#Copy a file from a remote host to a local folder:
scp remote_host:path/to/remote_file path/to/local_dir

#Recursively copy the contents of a directory from a remote host to a local directory:
scp -r remote_host:path/to/remote_dir path/to/local_dir

相关文章

网友评论

    本文标题:scp命令在服务器上传下载文件

    本文链接:https://www.haomeiwen.com/subject/cozbrqtx.html