使用 pexpect 发送第二个密码,但不起作用?
Using pexpect to send a second password, but not working?
我正在尝试使用 pexpect
发送密码。它第一次在提示输入密码时(在 "azureuser@xx.xx.xx.xxx's password:"
)起作用,但第二次(在 "[sudo] password for azureuser:"
)不起作用。为什么会这样?
我需要留在我正在登录的虚拟机中,以便输入密码和执行命令。我应该生成另一个进程吗?
import pexpect
def access_azure_vm(blob_name, src, dest):
child = pexpect.spawn(key.SSH_KEY)
child.logfile = sys.stdout.buffer
child.expect("azureuser@xx.xx.xx.xxx's password:")
child.sendline(key.PASSKEY)
child.expect("azureuser@vm")
# Run sudo azcopy copy <src> <dest>
child.sendline('sudo azcopy copy ' + "\"" + src + "\"" + " " + "\"" + dest + blob_name + "\"" + " --recursive")
child.expect("[sudo] password for azureuser:")
child.sendline(key.PASSKEY)
child.expect("azureuser@vm")
在 child.expect(s)
中,字符串 s
是正则表达式模式,因此 [sudo]
表示集合中的单个字符:s u d o。这将不匹配。您可以从字符串中删除此初始部分,或改用 child.expect_exact(s)
。
我正在尝试使用 pexpect
发送密码。它第一次在提示输入密码时(在 "azureuser@xx.xx.xx.xxx's password:"
)起作用,但第二次(在 "[sudo] password for azureuser:"
)不起作用。为什么会这样?
我需要留在我正在登录的虚拟机中,以便输入密码和执行命令。我应该生成另一个进程吗?
import pexpect
def access_azure_vm(blob_name, src, dest):
child = pexpect.spawn(key.SSH_KEY)
child.logfile = sys.stdout.buffer
child.expect("azureuser@xx.xx.xx.xxx's password:")
child.sendline(key.PASSKEY)
child.expect("azureuser@vm")
# Run sudo azcopy copy <src> <dest>
child.sendline('sudo azcopy copy ' + "\"" + src + "\"" + " " + "\"" + dest + blob_name + "\"" + " --recursive")
child.expect("[sudo] password for azureuser:")
child.sendline(key.PASSKEY)
child.expect("azureuser@vm")
在 child.expect(s)
中,字符串 s
是正则表达式模式,因此 [sudo]
表示集合中的单个字符:s u d o。这将不匹配。您可以从字符串中删除此初始部分,或改用 child.expect_exact(s)
。