Files
agent-bounty-protocol/get_env.sh
OG T 663ad4d3a2
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 7s
fix traffic observability, tg alerting robustness and prod compose ports
2026-06-07 20:38:19 +08:00

15 lines
289 B
Bash
Executable File

#!/usr/bin/expect -f
set timeout -1
set jump_host "wooo@192.168.0.110"
set target_host "ollama@192.168.0.188"
set repo_dir "/home/ollama/vibework-git"
spawn ssh -J $jump_host $target_host "cat $repo_dir/.env"
expect {
"*assword:*" {
send "0936223270\r"
exp_continue
}
eof
}