linux expect初识

写个命令,让ssh服务器便捷点

#!/usr/bin/expect

set type [lindex $argv 0]
if {$type == "server"} {
    set ip "xxxx"
    set name "xxxx"
    set passwd "xxxx"
} elseif {$type == "client"} {
    set ip "xxxx"
    set name "xxxx"
    set passwd "xxxx"
} elseif {$type == "test"} {
    set ip "xxxx"
    set name "xxxx"
    set passwd "xxxx"
} else {
    set ip "xxxx"
    set name "xxxx"
    set passwd "xxxx"
}

set timeout 10
spawn ssh $name@$ip
expect {
    "*yes/no" {send "yes
"; exp_continue}
    "*password:" {send "$passwd
"}
}
interact
原文地址:https://www.cnblogs.com/jaky666/p/4287845.html