Chinaunix
标题:
expect如何实现类似read的功能?
[打印本页]
作者:
FunBSD
时间:
2018-09-22 19:35
标题:
expect如何实现类似read的功能?
本帖最后由 FunBSD 于 2018-09-23 14:17 编辑
expect如何实现类似read的功能?
持续读取用户的输入作为参数,执行脚本。
while :
do
read -rp "Input \"Slot Port Number\": " slot port number
echo $slot, $port, $number
......
done
作者:
FunBSD
时间:
2018-09-23 20:38
本帖最后由 FunBSD 于 2018-09-24 08:27 编辑
我自己回答一下吧。示例:
#!/usr/bin/expect -f
set timeout -1
match_max 100000
while true {
puts -nonewline "Input Line: "
flush stdout
gets stdin line
if { $line == "q" || $line == "Q" } {
break
} else {
puts "Line: $line"
puts "Line: [lindex $line 0],[lindex $line 1],[lindex $line 2]"
}
}
复制代码
作者:
FunBSD
时间:
2018-09-23 20:42
但是还有个问题,怎么才能从spawn的程序输出获取字符串,保存到变量里?
欢迎光临 Chinaunix (http://bbs.chinaunix.net/)
Powered by Discuz! X3.2