#!/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")
child.expect("#")
child.sendline("ls /home")
child.expect("#")
child.sendline("pwd")
child.expect(pexpect.EOF)


