脚本连接linux服务器

#!/usr/bin/expect -f
set user root 
set host xx.xx.xx.xxx
set password xxxxx
set timeout -1

spawn ssh $user@$host
expect "password:*"
send "$password
"
interact
原文地址:https://www.cnblogs.com/godehi/p/13087335.html