首页 > 技术文章 > expect 免交互配置互信

lv1572407 2020-03-03 19:44 原文

++++++++++++++++++++++++++++++++++++++++

标题:expect 免交互配置互信

时间:2020年3月3日

++++++++++++++++++++++++++++++++++++++++

 

#/usr/bin/env expect

set  ip  192.168.100.100

set  user  root

set  password  centos

set  timeout  5

spawn ssh-copy-id "${user}@${ip} -p 2222"

expect {

  "yes/no" { send "yes\r" ; exp_continue }

  "password" { send "${password}\r" }

}

expect eof

推荐阅读