python中scp命令使用
时间: 2023-12-24 17:24:45 浏览: 156
在Python中使用scp命令可以通过expect模块来实现。具体步骤如下:
1. 首先需要在操作系统中安装expect。
2. 在Python脚本中导入expect模块。
3. 使用spawn函数来执行scp命令,其中包括端口号、本地源文件、用户名、主机名和远程目标文件等参数。
4. 使用sendline函数来输入密码。
5. 使用expect函数来等待scp命令执行完成。
下面是一个使用expect模块实现scp命令的Python脚本范例:
```python
#!/usr/bin/python
#coding:utf-8
import sys,re
import os
import subprocess
import pexpect
#scp file to remote node.
def scpFileToRemoteNode(user,ip,port,passwd,localsource,remotedest):
child = pexpect.spawn('scp -P %s -r %s %s@%s:%s'%(port,localsource,user,ip,remotedest))
try:
i = child.expect(['password:', 'continue connecting (yes/no)?'], timeout=5)
if i == 0 :
child.sendline(passwd)
elif i == 1:
child.sendline('yes\n')
child.expect('password: ')
child.sendline(passwd)
child.expect(pexpect.EOF)
print child.before
except pexpect.ExceptionPexpect, e:
print str(e)
#调用函数
scpFileToRemoteNode('username','192.168.1.1','22','password','/home/localfile','/home/remotefile')
```
阅读全文