瀏覽代碼

1. scp记录

kindring 1 年之前
父節點
當前提交
e773335d5a
共有 1 個文件被更改,包括 10 次插入0 次删除
  1. 10 0
      linux/scp操作.md

+ 10 - 0
linux/scp操作.md

@@ -10,3 +10,13 @@ scp /local_file username@remotehost:/remote_file
 * username:远程主机用户名
 * remotehost:远程主机地址
 * /remote_file:远程主机文件路径
+
+### 拉取目录
+#### 命令列子
+```bash
+scp -r username@remotehost:/remote_dir /local_dir
+```
+#### 解释
+* -r:递归复制整个目录
+* /remote_dir:远程主机目录路径
+* /local_dir:本地目录路径