Linux scp 传文件
Posted 呓语
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux scp 传文件相关的知识,希望对你有一定的参考价值。
usage: scp [-12346BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]
[-l limit] [-o ssh_option] [-P port] [-S program]
[[user@]host1:]file1 ... [[user@]host2:]file2
远程 -> 本地
# 文件
scp username@servername:/path/filename /localhost/filename
# 目录
scp -r username@servername:/path /localhost
本地 -> 远程
# 文件
scp /localhost/filename username@servername:/path/filename
# 目录
scp -r /localhost username@servername:/path
以上是关于Linux scp 传文件的主要内容,如果未能解决你的问题,请参考以下文章