使用expect實現shell自動互動

來源:互聯網
上載者:User

shell指令碼需要互動的地方可以使用here文檔是實現,但是有些命令卻需要使用者手動去就互動如passwd、scp

對自動部署免去使用者互動很痛苦,expect能很好的解決這類問題。

expect的核心是spawn expect send set

spawn 調用要執行的命令


expect 等待命令提示資訊的出現,也就是捕捉使用者輸入的提示:


send 發送需要互動的值,替代了使用者手動輸入內容


set 設定變數值


interact 執行完成後保持互動狀態,把控制權交給控制台,這個時候就可以手工操作了。如果沒有這一句登入完成後會退出,而不是留在遠程終端上。
expect eof 這個一定要加,與spawn對應表示捕獲終端輸出資訊終止,類似於if....endif

expect指令碼必須以interact或expect eof結束,執行自動化任務通常expect eof就夠了。

設定expect永不逾時
set timeout -1

設定expect 300秒逾時,如果超過300沒有expect內容出現,則推出
set timeout 300

expect編寫文法,expect使用的是tcl文法。

一條Tcl命令由空格分割的單片語成. 其中, 第一個單詞是命令名稱, 其餘的是命令參數
cmd arg arg arg

$符號代表變數的值. 在本例中, 變數名稱是foo.
$foo

方括弧執行了一個嵌套命令. 例如, 如果你想傳遞一個命令的結果作為另外一個命令的參數, 那麼你使用這個符號
[cmd arg]

雙引號把片語標記為命令的一個參數. "$"符號和方括弧在雙引號內仍被解釋
"some stuff"

大括弧也把片語標記為命令的一個參數. 但是, 其他符號在大括弧內不被解釋
{some stuff}

反斜線符號是用來引用特殊符號. 例如:n 代表換行. 反斜線符號也被用來關閉"$"符號, 引號,方括弧和大括弧的特殊含義

expect使用執行個體

1。首先確認expect的包要安置。

#rpm -qa | grep expect

如果沒有則需要下載安裝,

#yum install expect

2.安裝完成後,查看expect的路徑,可以用

#which expect

/usr/bin/expect

3.編輯指令碼
#vi autosu.sh
添加如下內容

1 2 3 4 5 6 #!/usr/bin/expect  -f   //這個expect的路徑就是用which expect 查看的結果   spawn  su   -   nginx         //切換使用者 expect   "password:"        //提示讓輸入密碼 send   "testr"         //輸入nginx的密碼 interact                  //操作完成

4.確定指令碼有可執行許可權

chmod +x autosu.sh

5.執行指令碼 expect autosu.sh 或 ./autosu.sh

expect常用指令碼

登陸到遠程伺服器

1 2 3 4 5 6 7 8 9 10 11 12 #!/usr/bin/expect   set   timeout   5 set   server   [ lindex   $ argv   0 ] set   user   [ lindex   $ argv   1 ] set   passwd   [ lindex   $ argv   2 ] spawn   ssh   - l   $ user   $ server expect   { & quot ; ( yes / no ) & quot ;   {   send   & quot ; yesr & quot ; ;   exp _continue   } & quot ; password : & quot ;   {   send   & quot ; $ passwdr & quot ;   } } expect   & quot ; * Last  login* & quot ;   interact

scp拷貝檔案

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 #!/usr/bin/expect set  timeout   10 set  host   [ lindex   $ argv   0 ]          //第1個參數,其它2,3,4參數類似 set  username   [ lindex   $ argv   1 ] set  password   [ lindex   $ argv   2 ]
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.