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