在两台 Linux 服务器之间通过 SCP 命令复制文件
命令:
scp [选项] 源文件 目标路径
本地到远程:
scp /path/to/local/file user@remote:/path/to/destination
远程到本地:
scp user@remote:/path/to/remote/file /path/to/destination
复制文件夹:
scp -r /path/to/local/folder user@remote:/path/to/destination
定义端口号:
scp -P 2222 /path/to/local/file user@remote:/path/to/destination
参考来源:
https://cloud.tencent.com/developer/article/2292900
输了你,赢了世界又如何...