WINDOWS下使用EXPECT的簡單例子
阿新 • • 發佈:2019-01-21
tps pub show exp view aix con clas style
這是一個自動登錄AIX服務器的例子。
1、先去如下地方下載expect:
windows">http://expect.nist.gov/#windows
ftp://bmrc.berkeley.edu/pub/winnt/tcltk/expect
2、安裝默認路徑是C:Program FilesExpect-5.21bin
expect.exe就在這裏
3、寫個簡單的腳本sample.txt
spawn telnet aixserver
expect "login:"
send "mynamer"
expect "Password:"
send "mypassr"
send "lsr"
send "prtconfr"
expect eof
PS:網頁的問題,腳本中的“\”等符號會丟失。
4、運行命令expect sample.txt看看效果
5、看看expect的一些幫助信息:
「開始」菜單程序Expect-5.21Tcl 8.0 Shell with Expect
敲?和help看看
再分享一下我老師大神的人工智能教程吧。零基礎!通俗易懂!風趣幽默!還帶黃段子!希望你也加入到我們人工智能的隊伍中來!https://blog.csdn.net/jiangjunshow
WINDOWS下使用EXPECT的簡單例子