linux 安装expect
yum install -y expect
编辑脚本 expect.sh
#!/usr/bin/expect
set timeout 1
spawn ssh 10.226.3.14
expect "*password:"
send "N0IjoiIn09gjmP59gjm532f01b1\r"
interact
搞定。
linux 安装expect
yum install -y expect
编辑脚本 expect.sh
#!/usr/bin/expect
set timeout 1
spawn ssh 10.226.3.14
expect "*password:"
send "N0IjoiIn09gjmP59gjm532f01b1\r"
interact
搞定。