#!/usr/bin/expect -f set timeout -1 spawn ssh -J wooo@192.168.0.110 wooo@192.168.0.188 "cd /home/wooo/deployments/agent-bounty-protocol && git pull origin main && docker compose exec -T web npx tsx seed.ts" expect { "*assword:*" { send "0936223270\r" exp_continue } eof }