複製本地linux文件到遠程服務器linux
scp /home/files root@172.16.252.32:/user/aa
複製遠程服務器的文件到本地服務器
scp root@172.16.252.32:/home/files /home/files
出現not a regular file 錯誤 是由於複製的不是一個文件而是一個文件夾,須要加-r 參數code
scp -r root@172.16.252.32:/home/files /home/files