「 LINUX 」 七月 02, 2023
scp 用法
文章字数 4.5k 阅读约需 4 mins.
scp 是 Linux 上两个网络主机之间传输文件的命令行工具。
scp [options] source ... target
options
有很多,可通过man scp
查看source
为传输的源文件或路径,可以多个target
为传输目标路径
source
或 target
为本地路径时,直接使用文件系统绝对路径即可;当为远程路径时,可使用如下两种格式:
user@host:/path/to/file
scp://user@host:port//path/to/file