12 lines
323 B
Plaintext
Executable File
12 lines
323 B
Plaintext
Executable File
#!/usr/bin/expect --
|
|
set timeout -1
|
|
set send_human {.05 0.1 1 .07 1.5}
|
|
eval spawn ssh -t -o StrictHostKeyChecking=no -o PreferredAuthentications=password -o PubkeyAuthentication=no $argv
|
|
match_max 100000
|
|
expect "*?assword:*"
|
|
send -- "$env(SSHPASS)\r"
|
|
send -- "\r"
|
|
expect "*?assword for*"
|
|
send -- "$env(SSHPASS)\r"
|
|
interact
|