Angenommen, Sie senden nicht absichtlich ein falsches Passwort, verwenden Sie exp_continue
als Schleifenkonstrukt:
expect <<EOF
set passwds {foo bar baz}
set i 0
spawn ssh -t [email protected]$server_address "$*"
expect {
"continue connecting (yes/no)?" { send "yes\r"; exp_continue }
" password: " { send "[lindex $passwds $i]\r"; incr i; exp_continue }
eof
}
EOF