【发布时间】:2016-05-12 09:25:37
【问题描述】:
在我下面的程序中,输出被重定向到文件 test1.txt,但是当我打开文件时,我在这里遇到了三个问题:
- 我看到 ls、pwd 等命令位于提示符下方 (sw0:FID128:root>)。
- 提示应显示“sw0:FID128:root>”,但它显示“sw0:FID128:root”
- 如果实际输出有 2 个选项卡,则文件仅显示 1 个选项卡。
我基本上希望它与另一个文件进行比较,因此如果选项卡数量不同,它将失败。
telconn=pexpect.spawn('telnet 10.24.12.109')
telconn.logfile = sys.stdout
telconn.expect(":")
telconn.send("user" + "\r")
telconn.expect(":")
telconn.send("pass" + "\r\r\r\r\n\n\n")
telconn.expect("key to proceed.")
telconn.send ("\003")
telconn.expect("root>")
prev_std= sys.stdout
sys.stdout=open("test1.txt","w")
print "Telnet connection is done"
telconn.sendline('\n');
telconn.expect (['>',pexpect.EOF])
ls = telconn.before
telconn.sendline('ls -al');
telconn.expect (['>',pexpect.EOF])
ls = telconn.before
telconn.sendline('pwd');
telconn.expect (['>',pexpect.EOF])
pwd = telconn.before
telconn.sendline('noscli');
telconn.expect (['#',pexpect.EOF])
nos = telconn.before
telconn.sendline('terminal length 0');
telconn.expect (['#',pexpect.EOF])
term = telconn.before
telconn.sendline('\n\n');
telconn .sendline('exit');
telconn.close()
print ls
print pwd
print nos
print term
#print "Ended session"
sys.stdout.close()
sys.stdout =prev_std
fo = open("test1.txt", "r+")
str = fo.read();
print "Read String is : ", str
# Close opend file
fo.close()
示例输出如下所示
Telnet connection is done
^M
sw0:FID128:root
ls -al^M
total 32^M
pwddrwx------ 3 root root 4096 Feb 2 11:07 ./^M
^M
drwxr-xr-x 28 root root 4096 Feb 3 05:58 ../^M
-rw-r--r-- 1 root sys 507 Feb 1 06:47 .bash_logout^M
-rw-r--r-- 1 root sys 27 Feb 1 06:47 .inputrc^M
-rw-r--r-- 1 root sys 1220 Feb 1 06:47 .profile^M
-rw-r--r-- 1 root sys 2551 Feb 1 06:47 .rhosts^M
drwxr-xr-x 2 root sys 4096 Feb 1 09:51 .ssh/^M
-rw-r--r-- 1 root sys 617 Feb 1 06:47 .toprc^M
-rw-r--r-- 1 root root 0 Feb 3 06:01 mcast_trc^M
-rw-r--r-- 1 root root 0 Feb 3 06:01 sysdiag_trc^M
sw0:FID128:root
pwd^M
/root^M
【问题讨论】: