博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
pexpect学习阶段
阅读量:5062 次
发布时间:2019-06-12

本文共 1769 字,大约阅读时间需要 5 分钟。

  网上关于pexpect的介绍基本都类似于这样http://blog.csdn.net/sdustliyang/article/details/23373485,但是并没有关于下述问题的解释

  问题:可以ssh到主机,但是后面执行的命令无法生效

  代码如下:

1 import pexpect  2 import sys 3  4 child = pexpect.spawn('ssh user@ip') 5 fout = file('mylog.txt','w') 6 child.logfile = fout 7  8 child.expect('password:') 9 child.sendline('mypassword')10 11 child.expect('#')12 child.sendline('ls /home')14 child.expect('#') 日志信息:
user@ip's password: mypassword  ######################################################################  #                              Notice                                #  #                                                                    #  #  1. Please DO NOT upgrade the kernel, as the kernel upgrade would  #  #   damage the original operating system.                            #  #                                                                    #  #  2. Please create unique passwords that use a combination of words,#  #   numbers, symbols, and both upper-case and lower-case letters.    #  #   Avoid using simple adjacent keyboard combinations such as        #   #   "Qwert!234","Qaz2wsx",etc.                                       #  #                                                                    #  #  3. Unless necessary, please DO NOT open or use high-risk ports,   #  #   such as Telnet-23, FTP-20/21, NTP-123(UDP), RDP-3389,            #  #   SSH/SFTP-22, Mysql-3306, SQL-1433,etc.                           #  #                                                                    #  #                     Any questions please contact 4000-955-988      #  ######################################################################ls /home
 

可以看到ssh是成功连接的,但是ls /home命令并没有执行。什么原因呐?我也不知道....网上也找不到

转载于:https://www.cnblogs.com/woniujun/p/7407112.html

你可能感兴趣的文章
数据中心虚拟化技术
查看>>
01入门
查看>>
复习文件操作
查看>>
SQL Server 使用作业设置定时任务之一(转载)
查看>>
第二阶段冲刺-01
查看>>
BZOJ1045 HAOI2008 糖果传递
查看>>
发送请求时params和data的区别
查看>>
JavaScript 克隆数组
查看>>
eggs
查看>>
一步步学习微软InfoPath2010和SP2010--第七章节--从SP列表和业务数据连接接收数据(4)--外部项目选取器和业务数据连接...
查看>>
如何增强你的SharePoint 团队网站首页
查看>>
FZU 1914 Funny Positive Sequence(线性算法)
查看>>
oracle 报错ORA-12514: TNS:listener does not currently know of service requested in connec
查看>>
基于grunt构建的前端集成开发环境
查看>>
MySQL服务读取参数文件my.cnf的规律研究探索
查看>>
java string(转)
查看>>
__all__有趣的属性
查看>>
写博客
查看>>
利用循环播放dataurl的视频来防止锁屏:NoSleep.js
查看>>
python3 生成器与迭代器
查看>>