aboutsummaryrefslogtreecommitdiffstats
path: root/data/ssh_exch.exp
blob: 4ced0c6ad3d57ac197a7c0190339cd0d6f5b69ae (plain)
1
2
3
4
5
6
7
8
9
#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.pub  $ip
expect "Are you sure you want to continue connecting" {send "yes\r"}
expect "password:" { send "$pswd\r"}

interact