Scp

使用本地電腦上的 SCP 遞歸地將目前工作目錄複製到遠端?

  • February 15, 2019

嘗試做類似的事情(在偽 unix 中):

scp -r <pwd> username@remote.com:~/<dirname of toplevel>

換句話說,我試圖將我在本地的目前目錄(和內容)複製到遠端,同時將“pwd”命令輸出的最後一個路徑段粘貼到/home/user/<here>遠端。

我在我的 unix 命令中搖搖欲墜,所以我想這次我會詢問與實驗以避免損壞

$ scp -pr "$(pwd)" user@remote.example.com:"$(basename $(pwd) )/"

引用自:https://unix.stackexchange.com/questions/500947