从本地Linux复制文件到远程另一台Linux上:
比如将本地Linux的aa.txt文件复制到远程192.168.118.129机器的Linux的/home/www/file目录下
scp ./aa.txt [email protected]:/home/www/file
从远程Linux复制文件到本地Linux上:
比如将远程192.168.118.129机器的Linux的/home/www/file目录下的aa.txt文件或所有文件复制到本地Linux的/home/myfile/目录下
scp [email protected]:/home/www/file/aa.txt /home/myfile/
scp -r [email protected]:/home/www/file/ /home/myfile/
原文地址:https://www.cnblogs.com/bjpowernodejava/p/10244193.html
时间: 2024-11-09 00:07:58