當前位置:首頁 » 編程軟體 » linux腳本expect

linux腳本expect

發布時間: 2022-03-04 08:52:26

① 如何在shell腳本中調用expect實現自動化

簡單的腳本,參考下
要交互的腳本(talk.sh)如下:
#!/bin/bash
echo "Who are you?"
read who
echo "Hello,$who"
echo "Are you happy?"
read answer
echo "why?"
read answer

自動化腳本:
#!/bin/bash

expect<<- END
spawn ./talk.sh
expect "who"
send "firefly\n"
expect "happy?"
send "Yes,I am happy.\n"
expect "why?"
send "Because it worked!\n"
expect eof
exit
END

② 如何在bash shell腳本中使用expect

1、首先檢查你機器上有沒有expect(我知道ubuntu默認是沒有安裝的)
ls /usr/bin | grep expect 看看有沒有裝expect
2、沒有的話需要安裝
在ubuntu的軟體安裝中心,搜索tcl 和tk 和expect並安裝;
也可以命令行輸入sudo apt-get install tcl tk expect
3. 環境ready了後,可以在shell腳本中用Here document的方式使用expect命令
Here document格式如下:
expect <<!
這中間都是expect命令
!
為防止錯誤,建議都頂格寫,前面不要留空格。

③ expect腳本在linux下是如何使用的

如果你是expect腳本語言的新手,可以首先從我們的expect的「hello world」樣例(英文)開始。
1,使用「-c」選項,從命令行執行expect腳本
expect可以讓你使用「-c」選項,直接在命令行中執行它,如下所示:
$ expect -c 'expect "\n" {send "pressed enter\n"}

pressed enter
$

如果你執行了上面的腳本,它會等待輸入換行符(\n)。按「enter」鍵以後,它會列印出「pressed enter」這個消息,然後退出。
2,使用「-i」選項交互地執行expect腳本
使用「-i」選項,可以通過來自於標准輸入的讀命令來交互地執行expect腳本。如下所示:
$ expect -i arg1 arg2 arg3
expect1.1>set argv
arg1 arg2 arg3
expect1.2>

正常情況下,當你執行上面的expect命令的時候(沒有「-i」選項),它會把arg1當成腳本的文件名,所以「-i」選項可以讓腳本把多個參數當成一個連續的列表。
當你執行帶有「-c」選項的expect腳本的時候,這個選項是十分有用的。因為默認情況下,expect是交互地執行的。
3,當執行expect腳本的時候,輸出調試信息
當你用「-d」選項執行代碼的時候,你可以輸出診斷的信息。如下所示:
$ cat sample.exp
# !/usr/bin/expect -f
expect "\n";
send "pressed enter";

$ expect -d sample.exp
expect version 5.43.0
argv[0] = expect argv[1] = -d argv[2] = sample.exp
set argc 0
set argv0 "sample.exp"
set argv ""
executing commands from command file sample.exp

expect: does "" (spawn_id exp0) match glob pattern "\n"? no

expect: does "\n" (spawn_id exp0) match glob pattern "\n"? yes
expect: set expect_out(0,string) "\n"
expect: set expect_out(spawn_id) "exp0"
expect: set expect_out(buffer) "\n"
send: sending "pressed enter" to { exp0 pressed enter}
4,使用「-D」選項啟動expect調試器
「-D」選項用於啟動調試器,它只接受一個布爾值的參數。這個參數表示提示器必須馬上啟動,還是只是初始化調試器,以後再使用它。
$ expect -D 1 script

「-D」選項左邊的選項會在調試器啟動以前被處理。然後,在調試器啟動以後,剩下的命令才會被執行。
$ expect -c 'set timeout 10' -D 1 -c 'set a 1'
1: set a 1
dbg1.0>

5,逐行地執行expect腳本
通常,expect會在執行腳本之前,把整個腳本都讀入到內存中。「-b」選項可以讓expect一次只讀取腳本中的一行。當你沒有寫完整個腳本的時候,這是十分有用的,expect可以開始執行這個不完整的腳本,並且,它可以避免把腳本寫入到臨時文件中。
$ expect -b

6,讓expect不解釋命令行參數
你可以使用標識符讓expect不解釋命令行參數。
你可以像下面這樣的讀入命令行參數:
$ cat print_cmdline_args.exp
#!/usr/bin/expect
puts 'argv0 : [lindex $argv 0]';
puts 'argv1 : [lindex $argv 1]';

當執行上面的腳本的時候,會跳過命令行選項,它們會被當成參數(而不是expect選項),如下所示:
$ expect print_cmdline_args.exp -d -c
argv0 : -d
argv1 : -c

④ linux下編寫sh腳本使用expect問題

在expect {} 括弧中間加入{ send \"sh t.sh\r\"; exp_continue } 這樣就可以了

⑤ shell中 expect使用

send "pwd" 之後應該繼續 expect 一個提示符,或者等待一個 timeout 的時間,然後send 一條命令 touch file1,如此繼續。

不考慮 expect 練習的目的的話,完全這個任務最方便的是用 sudo 代替 su,可配置 sudo 執行你這個操作時不用密碼。

⑥ 在shell(#!/bin/sh)腳本中怎麼使用expect命令,需要添加什麼環境變數嗎,正確即給分

首先你在命令行執行env expect,看expect能不能用,如果不能用,那麼你需要找到expect執行文件路徑,加入到PATH環境變數中去。

然後就可以在shell中使用了,有兩種方式實現:
1.用here document
2.用expect -c

$cat 1.sh
#!/bin/sh
output=`expect <<EXP
puts "hello world"
EXP
`
echo "expect 1 output:"
echo $output
echo
echo "expect 2 output:"
expect -c 'puts "hello world!"'

$chmod 777 1.sh

$./1.sh
expect 1 output:
hello world

expect 2 output:
hello world!

⑦ expect里如何執行shell腳本

shell編寫的except自動化功能有限, 不能做到介面的調用, 對執行的結果很難評估的哦, 建議使用python程序搞定, 樓主上面的需求, 都不是問題, 這個可以幫助搞定, 另外, wo最近開發了一個自動化的批量管理伺服器的程序, 裡面就有上述功能!如果感興趣的話, 可以一起討論一下,看看my網名就行了

⑧ linux下expect腳本問題

#!/usr/bin/expect-f

if{$argc!=1}{
puts"usage:$argv0IP"
exit1
}else{
setIP[lindex$argv0]
}

setpingcmd[format"ping-c100%s"$IP]

settimeout6000

#比如遠程用戶叫做test
setdestusertest
#比如遠程伺服器IP為如下
setdestip192.168.0.123
setdestpath"$destuser@$destip"
#比如用戶密碼叫做test
setdestpasswordtest

#ssh登錄
spawnssh$destpath

#######################
expect{
-re".*yes/no.*"{
exp_send"yes "
exp_continue
}
-re".*assword.*"{
exp_send"$destpassword "
}
}

#比如ssh登錄以後的提示符是test@Testserver>
expect{
-re".*test@Testserver.*"{
exp_send"$pingcmd "
}
}

expect{
#如果輸出timeout字元,則Control+C結束pingcmd
#這里用的是DestinationHostUnreachabl替換timeout。因為本人機器上沒有timeout.
-re".*DestinationHostUnreachabl.*"{
#輸入Control+c
exp_send"03"

#Control+c後必然輸出登錄提示符,再輸入期望執行的命令
expect{
-re".*test@Testserver.*"{
#假設希望執行的命令是ls
exp_send"ls "
}
}

#執行完ls之後退出
expect{
-re".*test@Testserver.*"{
exp_send"exit "
}
}
}

#如果沒有輸出timeout字元,退出。
-re".*test@Testserver.*"{
exp_send"exit "
}
}

interact

⑨ linux shell腳本嵌入一段expect

expect -c 用全路徑?比如 /usr/bin/expect -c

熱點內容
看linux版本 發布:2025-01-20 04:40:37 瀏覽:19
php獲取調用的方法 發布:2025-01-20 04:25:45 瀏覽:458
SMPT郵箱伺服器地址 發布:2025-01-20 04:04:16 瀏覽:662
抖影工廠為什麼安卓手機用不了 發布:2025-01-20 04:00:05 瀏覽:386
我的世界網易版怎麼進朋友伺服器 發布:2025-01-20 03:50:10 瀏覽:684
phpsession跳轉頁面跳轉 發布:2025-01-20 03:47:20 瀏覽:540
深圳解壓工廠 發布:2025-01-20 03:41:44 瀏覽:690
linux字體查看 發布:2025-01-20 03:41:30 瀏覽:742
pythonextendor 發布:2025-01-20 03:40:11 瀏覽:199
為什麼安卓手機儲存越來越少 發布:2025-01-20 03:40:07 瀏覽:925