我有一个系统,在获取show-table[0]
时,会打印0|-100|111
。
我希望我的期望脚本接收$row
作为参数并执行以下操作:
发送show-table[$row]
返回值-100
(100也会很好)
这是我尝试过的:
set row [lindex $argv 0]
expect {
"> " {send "show-table\[$row\]\n"}
timeout { exit 1 }
}
expect {
"\|*\|" {}
timeout { exit 1 }
}
exit $expect_out(0,string)
2个问题:
有什么建议吗?