码迷,mamicode.com
首页 > 其他好文 > 详细

使用expcet传公钥到多台服务器

时间:2018-07-29 15:20:54      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:contact   time   spawn   you   expec   eof   define   var   user   

#!/usr/bin/expect if { $argc != 2 } { send_user "usage: expect ssh.exp ip\n" exit } #define var set ip [lindex $argv 0] set password [lindex $argv 1] spawn ssh-copy-id -i $ip expect { -timeout 2 "(yes/no)?" {send "yes\r";exp_continue} "*password" {send "$password\r"} timeout {puts "expect connect timeout,pls contact root;" return} } expect eof exit -onexit { send_user "root say good bye to you!\n" }

使用expcet传公钥到多台服务器

标签:contact   time   spawn   you   expec   eof   define   var   user   

原文地址:http://blog.51cto.com/yht1990/2151735

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