11 lines
417 B
Plaintext
11 lines
417 B
Plaintext
#!/usr/bin/expect -f
|
|
spawn ssh -p 2222 -o StrictHostKeyChecking=accept-new haruncan@95.70.252.214 "mkdir -p ~/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGo7pRd2fozEvxIultfwgoajgNOzc0RVywcqrqgZho62 piton@Pitons-MacBook-Air.local' >> ~/.ssh/authorized_keys && chmod 700 ~/.ssh && chmod 600 ~/.ssh/authorized_keys"
|
|
|
|
expect {
|
|
"assword:" {
|
|
send "M594xH%\$iM&4MM\r"
|
|
exp_continue
|
|
}
|
|
eof
|
|
}
|