实现ssh 自动登录
#!/usr/bin/expect
spawn ssh root@192.168.22.194
expect "*password:"
send "123456"
send "\n"
interact
绝对路径执行:./test.sh
备注:expect,spawn命令 不支持,可以yum -y install expect /spawn安装;
#!/usr/bin/expect
spawn ssh root@192.168.22.194
expect "*password:"
send "123456"
send "\n"
interact
绝对路径执行:./test.sh
备注:expect,spawn命令 不支持,可以yum -y install expect /spawn安装;