expect

2017-12-04  本文已影响41人  AEGQ

参考:


示例:

#!/usr/bin/expect -f  
set ip 10.****
set password ***
set timeout 10  
spawn ssh root@$ip  
expect {   
#"*yes/no" { send "yes\r"; exp_continue}  
"*password:" { send "$password\r" }   
}  
expect "#*"  
send "pwd\r"  
send  "exit\r"  
expect eof
上一篇 下一篇

猜你喜欢

热点阅读