#1/usr/bin/env python
import pexpect
import sys
child = pexpect.spawn('ssh root@192.168.198.121')
fout = file('mylog.txt','w')
child.logfile = fout
child.expect(["password:"])
child.sendline("123456")
print "before:"+child.before
print "after:"+child.after


