码迷,mamicode.com
首页 > 其他好文 > 详细

pxssh的简单使用

时间:2014-12-16 22:51:58      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:os   使用   sp   bs   as   line   nbsp   br   file   

__author__ = ‘jenny‘


import pexpect

ip="localhost"

user="jenny"

passwd="gaoxing"

if __name__=="__main__":

    child = pexpect.spawn("ssh-keygen")

    print child.expect("Enter file*")

    child.sendline()

    try:

        child.expect("Overwrite*", timeout=3)

        child.sendline()

    except:

        pass

    print child.expect("Enter passphrase*")

    child.sendline()

    print child.expect("Enter same passphrase*")

    child.sendline()


pxssh的简单使用

标签:os   使用   sp   bs   as   line   nbsp   br   file   

原文地址:http://my.oschina.net/1987times/blog/356837

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!