Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想登录网络中的不同机器并将文件从该机器复制到我的机器。我想使用 python 执行此操作。知道我该怎么做。我有 python 2.5 和 ubuntu 8.10
使用子流程并scp直接调用。这具有使用您的 ssh 设置、私钥和代理的优势。
scp
如果您需要更结构化的框架来执行本地和远程操作,请查看Fabric 。
获取paramiko或类似的库。