码迷,mamicode.com
首页 > 系统相关 > 详细

shell中使用expect批量ssh-copy-id

时间:2019-05-22 15:32:17      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:expect   timeout   批量   for   ash   roo   password   tin   inter   

#!/bin/bash

password=Jdyun@2019

for i in {1..3}
  do
    expect <<-EOF
    set timeout 5
    spawn ssh-copy-id -i root@jdc$i
    expect {
    "yes/no" { send "yes\n";exp_continue }
    "password:" { send "$password\n" }
    }
  interact
  expect eof
EOF
done

 

 

EOF行前后不能有空格

shell中使用expect批量ssh-copy-id

标签:expect   timeout   批量   for   ash   roo   password   tin   inter   

原文地址:https://www.cnblogs.com/guoxin1990/p/10905892.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!