blob: 1b462c42e1bda8a6c8349bbc51ffdb220658ddfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#1 /usr/bin/expect
set timeout 4
set ip [lindex $argv 0]
set pswd [lindex $argv 1]
spawn ssh-copy-id -i /root/.ssh/id_rsa $ip
expect "Are you sure you want to continue connecting" {send "yes\r"}
expect "password" { send "$pswd\r"}
interact
|