#!/usr/bin/expect
set timeout 1 #设置超时阈值
set password 123456 #ssh登录密码
set ip1 "llj@10.1.4." #固定ip地址前端
spawn ssh $ip1[lindex $argv 0] #此处将命令参数进行组合,其中argv 0是第0个参数
expect "*password:" #期望一个密码
send "$password\r " #向进程发送字符串
interact
脚本完成自动登录ssh的功能