今天用expect写了两个非常简单的脚本,但是里面也包含了几个知识点,特此记录一下。
脚本一
#!/usr/bin/expect
spawn /usr/bin/scp root@172.16.60.105:/root/test/src/build/* /usr/local/sbin/
expect {
"*password" {set timeout 300; send "123456\r";}
}
expect eof
脚本二
#!/usr/bin/expect -f
set test_pid [exec pidof test_meta]
spawn gdb -p $test_pid
expect "(gdb)"
send "c\r"
interact
知识点一:如何把linux下的命令执行返回值赋值给expect里的变量,比如set test_pid [exec pidof test_meta],以及在spawn中调用该变量,跟shell类似,也是$变量名;
知识点二:执行expect后退出则用“expect eof”,不退出则用“interact”。
阅读(1056) | 评论(0) | 转发(0) |