spawn ssh 自动登录
经常需要远程登录服务器
可以采用如下方式,快速登录。
#!/usr/bin/expect
set timeout 30
spawn bash -c "ssh root@192.168.1.1"
expect {
"password:" {send "123456r"}
}
expect #
interact

spawn ssh 自动登录
经常需要远程登录服务器
可以采用如下方式,快速登录。
#!/usr/bin/expect
set timeout 30
spawn bash -c "ssh root@192.168.1.1"
expect {
"password:" {send "123456r"}
}
expect #
interact