我正在使用 pythons pexpect 模块来自动执行任务,我需要帮助来确定要与 sendcontrol 一起使用的关键字符。怎么能发送控制键 ENTER ?以及如何找到关键字符以供将来参考?
这是我正在处理的代码。
#!/usr/bin/env python
import pexpect
id = pexpect.spawn ('ftp 192.168.3.140')
id.expect_exact('Name')
id.sendline ('anonymous')
id.expect_exact ('Password')
*# Not sure how to send the enter control key
id.sendcontrol ('???')*
id.expect_exact ('ftp')
id.sendline ('dir')
id.expect_exact ('ftp')
lines = id.before.split ('\n')
for line in lines :
print line