91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

linux中的expect命令怎么用

發布時間:2022-01-21 10:53:55 來源:億速云 閱讀:169 作者:kk 欄目:開發技術

本篇文章為大家展示了linux中的expect命令怎么用,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

expect介紹

expect 是由Don Libes基于Tcl(Tool Command Language )語言開發的,主要應用于自動化交互式操作的場景,借助Expect處理交互的命令,可以將交互過程如:ssh登錄,ftp登錄等寫在一個腳本上,使之自動化完成。尤其適用于需要對多臺服務器執行相同操作的環境中,可以大大提高系統管理人員的工作效率

expect命令

expect語法:

expect [選項][ -c cmds] [ [ -[f|b] ] cmdfile] [ args]

選項

-c:從命令行執行expect腳本,默認expect是交互地執行的

示例:

expect -c 'expect "\n" {send"pressed enter\n"}

-d:可以輸出輸出調試信息

示例:

expect -d ssh.exp

expect中相關命令

spawn:啟動新的進程
send:用于向進程發送字符串
expect:從進程接收字符串
interact:允許用戶交互
exp_continue匹配多個字符串在執行動作后加此命令

except最常用的語法(tcl語言:模式–動作)

單一分支模式語法:

expect “hi” {send “You said hi\n"}

匹配到hi后,會輸出“you said hi”,并換行

多分支模式語法:

expect"hi" { send "You said hi\n" } \

"hehe"{ send “Hehe yourself\n" } \

"bye"{ send “Good bye\n" }

匹配hi,hello,bye任意字符串時,執行相應輸出。等同如下:

expect {

"hi"{ send "You said hi\n"}

"hehe"{ send "Hehe yourself\n"}

"bye"{ send “Good bye\n"}

}

示例

cat ssh2.exp

#!/usr/bin/expect

spawn ssh 192.168.8.100

expect {

"yes/no" { send"yes\n";exp_continue }

"password" { send“magedu\n" }

}

interact

#expect eof

示例:變量

cat ssh3.exp

#!/usr/bin/expect

set ip 192.168.8.100

set user root

set password magedu

set timeout 10

spawn ssh $user@$ip

expect {

"yes/no" { send"yes\n";exp_continue }

"password" { send"$password\n" }

}

interact

示例:位置參數

vim ssh4.exp

#!/usr/bin/expect

set ip [lindex $argv 0]

set user [lindex $argv 1]

set password [lindex $argv 2]

spawn ssh $user@$ip

expect {

"yes/no" { send"yes\n";exp_continue }

"password" { send"$password\n" }

}

interact

#./ssh4.exp 192.168.8.100 rootmagedu

示例:執行多個命令

cat ssh5.exp

#!/usr/bin/expect

set ip [lindex $argv 0]

set user [lindex $argv 1]

set password [lindex $argv 2]

set timeout 10

spawn ssh $user@$ip

expect {

"yes/no" { send"yes\n";exp_continue }

"password" { send"$password\n" }

}

expect "]#" { send"useradd haha\n" }

expect "]#" { send"echo magedu |passwd –stdin haha\n" }

send "exit\n"

expect eof

#./ssh5.exp 192.168.8.100 rootmagedu

示例:shell腳本調用expect

vim ssh6.sh

#!/bin/bash

ip=$1

user=$2

password=$3

expect

set timeout 10

spawn ssh$user@$ip

expect {

"yes/no" { send"yes\n";exp_continue}

"password" { send"$password\n" }

}

expect "]#" { send"useraddhehe\n" }

expect "]#" { send "echomagedu|passwd–stdinhehe\n" }

expect "]#" { send"exit\n" }

expect eof

EOF

#./ssh6.sh 192.168.8.100 rootmagedus

什么是Linux系統

Linux是一種免費使用和自由傳播的類UNIX操作系統,是一個基于POSIX的多用戶、多任務、支持多線程和多CPU的操作系統,使用Linux能運行主要的Unix工具軟件、應用程序和網絡協議。

上述內容就是linux中的expect命令怎么用,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长乐市| 平凉市| 秀山| 镇安县| 开江县| 铅山县| 桦南县| 于田县| 宣城市| 镇原县| 额尔古纳市| 德安县| 海口市| 盈江县| 项城市| 郁南县| 长顺县| 房产| 肇州县| 十堰市| 兴义市| 塔城市| 农安县| 额尔古纳市| 神农架林区| 海南省| 浠水县| 乾安县| 东乌| 惠东县| 临邑县| 康平县| 曲靖市| 高州市| 额敏县| 光山县| 南宫市| 龙里县| 尼勒克县| 治多县| 方正县|