b)应答语句中的变量
#!/usr/bin/expect
spawn sh ask.sh
set timeout 5
set NAME [ lindex $argv 0 ]
set AGE [ lindex $argv 1 ]
set SUB [ lindex $argv 2 ]
set FEEL [ lindex $argv 3 ]
expect {"name" { send "$NAME\r";exp_continue }"old" {send "$AGE\r";exp_continue }"subject" { send "$SUB\r";exp_continue }"happy" { send "$FEEL\r"}
}
expect eof
[!note]
set NAME [ lindex $argv() ]表示 expect 脚本后跟的第一串字符后面的 1-3 以此类推
c)整合 shell 和 expect 到脚本中
#!/bin/bash
/usr/bin/exepct <<EOF
spawn sh ask.sh
expect {"name" { send "$1\r";exp_continue }"old" { send "$2\r";exp_continue }"subject" { send "$3\r";exp_continue }"happy" { send "$4\r"}
}
expect eof
EOF
实验
当网络环境中有 172.25.254.100~172.25.254.102 这 10 台主机, 这 10 台主机密码均为 easylee 检测它们网络是否通畅, 如果通畅把主机的 IP 和主机号名写入/mnt/hosts 中
例如:
172.25.254.102 是网络通的并且主机名称为 server102.easylee.org
那么/mnt/hosts 中的内容应存在
172.25.254.102 server102.easylee.org
#!/bin/bash
Auto_ssh()
{
/usr/bin/expect << EOF
spawn ssh -l root $1 $2
expect{"yes/no" { send "yes/r";exp_continue }"password" { send "westos\r" }
}
expect eof
EOF
}for IP in 172.25.254.100
doping -c1 -w1 $IP &> /dev/null && {echo -e "$IP\t`Auto_ssh $IP hostname | tail -n 1`">> /mnt/hosts}
done