blob: c52140b778ba1f6c32168b8ae4bee3b5c93b7a70 (
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 QtipKey $ip
expect "Are you sure you want to continue connecting" {send "yes\r"}
expect "password:" { send "$pswd\r"}
interact
|