mirror of
https://gitlab.com/futo-org/fcast.git
synced 2025-06-24 21:25:23 +00:00
10 lines
140 B
Bash
10 lines
140 B
Bash
![]() |
#!/usr/bin/expect -f
|
||
|
|
||
|
set timeout -1
|
||
|
spawn {*}$argv
|
||
|
|
||
|
expect "SSH Private Key: /root/.ssh/tv_webos"
|
||
|
send -- "$env(PASSPHRASE)\n"
|
||
|
|
||
|
expect eof
|