python expect

发布时间:2019-08-28 09:07:53编辑:auto阅读(1333)

     

     

    #!/usr/bin/python

    import pexpect

    foo = pexpect.spawn('passwd mqjia')

    foo.expect("New UNIX password:")

    foo.sendline("1234567")

    foo.expect("Retype new UNIX password:")

    foo.sendline("1234567")

    foo.interact()

     

     

     

关键字

上一篇: python hash

下一篇: Python语句