用expect实现的自动登录到多台服务器的shell脚本

本站所有内容来自互联网收集,仅供学习和交流,请勿用于商业用途。如有侵权、不妥之处,请第一时间联系我们删除!Q群:迪思分享

免费资源网 – https://freexyz.cn/
复制代码

代码如下:

#!/usr/bin/expect -f

set ipaddress [lindex $argv 0]

set passwd [lindex $argv 1]

set timeout 30

spawn ssh root@$ipaddress

#expect “yes/no”

#send “yesr”

expect “password:”

send “$passwdr”

expect “]*”

send “mkdir -p /tmp/haha/haha2r”

send “exitr”

***************

expect {

“(yes/no)?” {

     send “yesn”

  }

“password:” {

   ….

}

判断语句

if {$havepass == 0} {

  expect “password:” { send “$pwn” }

}

或者:

expect {

“yes/no” { send “yesr”; exp_continue}

“password:” { send “$passwdr” }

}

免费资源网 – https://freexyz.cn/


© 版权声明
THE END
★喜欢这篇文章吗?喜欢的话,麻烦动动手指支持一下!★
点赞9 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容