1-introduction:expect introduction;reference;reference2
2-Expect:
????是一個(gè)用來處理交互的命令阱缓。借助Expect敬鬓,我們可以將交互過程寫在一個(gè)腳本上,使之自動(dòng)化完成。形象的說,ssh登錄,ftp登錄等都符合交互的定義寞忿。
3-四個(gè)命令
Expect中最關(guān)鍵的四個(gè)命令是send,expect,spawn,interact。
send:用于向進(jìn)程發(fā)送字符串
expect:從進(jìn)程接收字符串
spawn:啟動(dòng)新的進(jìn)程
interact:允許用戶交互
3.1-?send命令
send命令接收一個(gè)字符串參數(shù)顶岸,并將該參數(shù)發(fā)送到進(jìn)程。
expect1.1> send "hello world\n"
?hello world
3.2-expect命令
(1)基礎(chǔ)知識
????expect命令和send命令正好相反叫编,expect通常是用來等待一個(gè)進(jìn)程的反饋辖佣。expect可以接收一個(gè)字符串參數(shù),也可以接收正則表達(dá)式參數(shù)搓逾。和上文的send命令結(jié)合卷谈,現(xiàn)在我們可以看一個(gè)最簡單的交互式的例子:
expect "hi\n"
send "hello there!\n"
這兩行代碼的意思是:從標(biāo)準(zhǔn)輸入中等到hi和換行鍵后,向標(biāo)準(zhǔn)輸出輸出hello there霞篡。
tips: $expect_out(buffer)存儲了所有對expect的輸入世蔗,<$expect_out(0,string)>存儲了匹配到expect參數(shù)的輸入。
比如如下程序:
expect "hi\n"?
send "you typed $expect_out(buffer)"
send "but I only expected $expect_out(0,string)"
當(dāng)在標(biāo)準(zhǔn)輸入中輸入
test
hi
時(shí)朗兵,運(yùn)行結(jié)果如下
you typed: test
hi
I only expect: hi
(2)模式-動(dòng)作
? ??expect最常用的語法是來自tcl語言的模式-動(dòng)作污淋。這種語法極其靈活,下面我們就各種語法分別說明余掖。
????單一分支模式語法:
????????expect"hi"{send"You said hi"}
????????匹配到hi后寸爆,會(huì)輸出"you said hi"
多分支模式語法:
? ? ? ?expect "hi"{send"You said hi\n"} \"hello"{send"Hello yourself\n"} \"bye"{send"That was unexpected\n"}
????????匹配到hi,hello,bye任意一個(gè)字符串時(shí),執(zhí)行相應(yīng)的輸出。
????????等同于如下寫法:
????????expect {
????????????????????"hi" {send "You said hi\n"}
????????????????????"hello" {send "Hello yourself\n"}
????????????????????"bye" {send "That was unexpected\n"}
}
(3)?spawn命令
????上文的所有demo都是和標(biāo)準(zhǔn)輸入輸出進(jìn)行交互赁豆,但是我們跟希望他可以和某一個(gè)進(jìn)程進(jìn)行交互仅醇。spawm命令就是用來啟動(dòng)新的進(jìn)程的。spawn后的send和expect命令都是和spawn打開的進(jìn)程進(jìn)行交互的魔种。結(jié)合上文的send和expect命令我們可以看一下更復(fù)雜的程序段了析二。
set timeout-1?
spawn ftp ftp.test.com? ? ?//打開新的進(jìn)程,該進(jìn)程用戶連接遠(yuǎn)程ftp服務(wù)器
expect "Name"? ? ? ? ? ? ? ? //進(jìn)程返回Name時(shí)
send "user\r"? ? ? ? ? ? ? ? ? ?//向進(jìn)程輸入anonymous\r
expect "Password:"? ? ? ? //進(jìn)程返回Password:時(shí)
send "123456\r"? ? ? ? ? ? ?//向進(jìn)程輸入don@libes.com\r
expect "ftp> "? ? ? ? ? ? ? ? ? //進(jìn)程返回ftp>時(shí)
send "binary\r"? ? ? ? ? ? ? ?//向進(jìn)程輸入binary\r
expect "ftp> "? ? ? ? ? ? ? ? ?//進(jìn)程返回ftp>時(shí)
send "get test.tar.gz\r"? ?//向進(jìn)程輸入get test.tar.gz\r
這段代碼的作用是登錄到ftp服務(wù)器ftp ftp.uu.net上节预,并以二進(jìn)制的方式下載服務(wù)器上的文件test.tar.gz叶摄。
(4)interact
到現(xiàn)在為止,我們已經(jīng)可以結(jié)合spawn心铃、expect准谚、send自動(dòng)化的完成很多任務(wù)了。但是去扣,如何讓人在適當(dāng)?shù)臅r(shí)候干預(yù)這個(gè)過程了柱衔。比如下載完ftp文件時(shí),仍然可以停留在ftp命令行狀態(tài)愉棱,以便手動(dòng)的執(zhí)行后續(xù)命令唆铐。interact可以達(dá)到這些目的。下面的demo在自動(dòng)登錄ftp后奔滑,允許用戶交互艾岂。
spawn ftp ftp.test.com
expect "Name"
send "user\r"
expect "Password:"? send"123456\r"
interact