Linux scp命令主要用于Linux之间的文件和目录的复制。scp是Secure Copy的缩写,是Linux下基于ssh的安全远程文件拷贝命令。
常见使用方式:
- 复制本地test.txt文件到远程服务器的/home目录
scp test.txt root@host:/home/
支持通配符,同时复制多个文件,如*.txt
- 复制本地./data目录到远程服务器的/home目录
scp -r ./data root@host:/home/
- 复制服务器的test.txt文件到本地
scp root@host:/home/test.txt ./
复制服务器文件到本地的方法,就是与复制本地文件到服务器的位置交换就可以了。