Linux scp使用实例
时间: 2023-08-22 19:10:20 浏览: 81
Linux—— scp 命令使用方法.doc
5星 · 资源好评率100%
当然,我可以帮你解答关于Linux scp的问题。下面是一个scp的使用实例:
1. 从本地复制文件到远程服务器:
```
scp /path/to/local/file username@remote:/path/to/destination
```
这个命令将本地文件 `/path/to/local/file` 复制到远程服务器上的 `/path/to/destination` 目录中。
2. 从远程服务器复制文件到本地:
```
scp username@remote:/path/to/remote/file /path/to/destination
```
这个命令将远程服务器上的 `/path/to/remote/file` 复制到本地的 `/path/to/destination` 目录中。
3. 从远程服务器复制整个目录到本地:
```
scp -r username@remote:/path/to/remote/directory /path/to/destination
```
这个命令将远程服务器上的整个目录 `/path/to/remote/directory` 复制到本地的 `/path/to/destination` 目录中。
4. 从本地复制文件到远程服务器,并指定端口号:
```
scp -P port /path/to/local/file username@remote:/path/to/destination
```
这个命令将本地文件 `/path/to/local/file` 复制到远程服务器上的 `/path/to/destination` 目录中,并通过指定端口号连接。
希望这些实例能够帮助到你!如果有任何其他问题,请随时提问。
阅读全文