Linux的scp命令詳解

動力節點發表於2019-01-09

從本地Linux複製檔案到遠端另一臺Linux上:

比如將本地Linux的aa.txt檔案複製到遠端192.168.118.129機器的Linux的/home/www/file目錄下

scp  ./aa.txt  root@192.168.118.129:/home/www/file

 

從遠端Linux複製檔案到本地Linux上:

比如將遠端192.168.118.129機器的Linux的/home/www/file目錄下的aa.txt檔案或所有檔案複製到本地Linux的/home/myfile/目錄下

scp root@192.168.118.129:/home/www/file/aa.txt  /home/myfile/ 

scp -r root@192.168.118.129:/home/www/file/  /home/myfile/