作者:shiny guo
--------------------
1. expect中的判断语句:
- if { condition } {
-
# do your things
-
} elseif {
-
# do your things
-
} else {
-
# do your things
-
}
expect中没有小括号(),所有的if/else, while, for的条件全部使用大括号{}, 并且{ 与左边要有空格,否则会报错。另,else 不能单独占一行,否则会报错。
2. 字符串比较
- if { "$node" == "apple" } {
-
puts "apple"
- } elseif { "$node" == "other" } {
-
puts "invalid name"
-
exit 70
-
} else {
-
puts "asd"
-
}
对比string,使用==表示相等, !=标示不相等。
3. switch 语句
- switch $location {
- "apple" { puts "apple" }
- "banana" { puts "banana" }
-
default {
-
puts "other"
-
}
-
}
记得左大括号{ 的左边要有空格,否则会报错
4. 读取用户输入
- expect_user -re "(.*)\n"
-
send_user "$expect_out(1, string)\n"
expect_user -re 表示正则表达式匹配用户按下回车前输入的所有字符
expect_out(1, string) 表示第一个匹配的内容,即回车前所有字符
expect_out(buffer) 所有的buffer内容
5. break && continue
如c中一样,expect一样可以使用break && continue, 并且功能相同。注:只能用在循环中。
6. 定义交互命令
- # stick control + z in variable
-
set ControlZ \032
-
# stick control + c in variable
-
set ControlC \x03
-
# define string embedded ctrl-z && tab
-
set oddword foo\032bar\tgorp
阅读(18557) | 评论(0) | 转发(0) |