在我的下面的程序中,输出被重定向到文件test1.txt,但是当我打开文件时,我有三个问题:
我基本上希望它与另一个文件进行比较,因此如果选项卡的数量不同,它将失败.
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()
Run Code Online (Sandbox Code Playgroud)
示例输出如下所示
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
Run Code Online (Sandbox Code Playgroud)
我看到像 ls、pwd 这样的命令位于提示符下方
您的输出具有不一致的换行符 ( ^Mis CR)。这意味着您的合奏的某些部分会输出CR+LF,而其他部分则只是输出LF。仅从单个输出很难区分哪个是哪个。将它们分开并亲自看看。
提示符预计显示“sw0:FID128:root>”,但它显示“sw0:FID128:root”
可能的原因:
stderr。
2>&1或等效或以其他方式查看两个输出isatty()函数来区分它们。其基本原理通常是为了更好地适应人类或机器阅读的输出。许多此类程序都有开关来显式指定输出风格。
| cat(用于输出重定向)或cat <command_file> |(用于输入重定向)来检查是否是这种情况对于telnet,它可以是其中之一。>是一个命令提示符。它通常打印到stderr. 当存在重定向时,它仍然可以在那里打印或根本不打印。
如果实际输出有 2 个选项卡,则该文件仅显示 1 个选项卡。
可能与2)相同。也许输出经历的某些事情也会进行制表符转换。
| 归档时间: |
|
| 查看次数: |
110 次 |
| 最近记录: |