1、從伺服器下載檔案
scp username@servername:/path/filename /tmp/local_destination
例如scp codinglog@192.168.0.101:/home/kimi/test.txt 把192.168.0.101上的/home/kimi/test.txt
的檔案下載到 /tmp/local_destination
eg: scp -r zhuyj@spark:node-cas /Users/zhuyinjing/Desktop
2、上傳本地檔案到伺服器
scp /path/local_filename username@servername:/path
例如scp /var/www/test.php codinglog@192.168.0.101:/var/www/ 把本機/var/www/目錄下的test.php檔案
上傳到192.168.0.101這臺伺服器上的/var/www/目錄中
3、從伺服器下載整個目錄
scp -r username@servername:remote_dir/ /tmp/local_dir
例如:scp -r codinglog@192.168.0.101 /home/kimi/test /tmp/local_dir
4、上傳目錄到伺服器
scp -r /tmp/local_dir username@servername:remote_dir
例如:
scp -P 22 -r test codinglog@192.168.0.101:/var/www/ 把當前目錄下的test目錄上傳到伺服器
的/var/www/ 目錄複製程式碼
scp
相關文章
- SCP 2024
- scp命令
- 常用scp命令
- Linux scp命令Linux
- linux命令---scpLinux
- scp without interative password
- 常見命令--SCP
- SCP命令的使用
- Linux SSH & SCP命令Linux
- scp 傳輸檔案
- scp命令使用方法
- Linux小技巧scp命令Linux
- scp後臺複製
- scp 報錯 not a regular file
- Linux scp命令詳述Linux
- 在 Windows 上使用 scp 命令Windows
- Linux基礎:ssh與scpLinux
- scp和rsyc限速傳輸
- Linux的scp命令詳解Linux
- [20191202]加快scp拷貝速度.txt
- scp使用者遷移rsync
- SCP-231-特殊個人需求
- scp的免密登入方式
- scp實現斷點續傳---rsync斷點
- MacOS下shh,sftp,scp簡單使用MacFTP
- 暑集假訓SCP提高擬模21
- linux-scp 遠端拷貝報錯原因Linux
- Linux scp 後臺執行傳輸檔案Linux
- SSH免密登入與SCP遠端複製
- 如何使用scp進行遠端複製檔案?
- SCP和Rsync遠端拷貝的幾個技巧
- socket實現簡單傳檔案ftp/scp服務FTP
- Linux常用網路傳輸工具命令,ssh、curl、wget、scpLinuxwget
- 與遊戲頻繁掛鉤的SCP是什麼?遊戲
- 部署scp2自動上傳到伺服器伺服器
- 使用scp在多個linux系統間進行copyLinux
- 利用scp 遠端上傳下載檔案/資料夾
- 常用命令--複製-備份--cp--mv--scp--rsync