#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