📌  相关文章
📜  如何将目录复制到 ssh 服务器 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:46.598000             🧑  作者: Mango

代码示例1
# Copy from machine a to b
scp -r /path/to/directory user@ipaddress:/path/to/destination

# Copy from machine b to a
scp -r user@ipaddress:/path/to/destination /path/to/directory