标签: python fabric
有没有办法用Fabric复制远程目录?我目前正在使用fabric构建一个目录列表,然后使用本地(“scp ...”)下载它们。关于get()的文档是备用的,似乎只适用于单个文件。
答案 0 :(得分:3)
使用fabric.operations.get:
fabric.operations.get
from fabric.operations import get as download lcd('/path/to/local-directory-to-save-to') download('/path/to/remote_directory', '.')