#!/bin/bash # Quick check script for horizon sweep experiment JOB=14738189 echo "═══════════════════════════════════════════════════════════" echo " Horizon Sweep Experiment Status - Job $JOB" echo "═══════════════════════════════════════════════════════════" echo "" echo "Job Status:" sacct -j $JOB --format=JobID,State,Elapsed,ExitCode 2>/dev/null | head -4 echo "" echo "Generated Directories:" ls -d /scratch/$USER/dovla/experiments/horizon_sweep_pickcube/h* 2>/dev/null || echo " (none yet)" echo "" echo "Latest Log (last 30 lines):" tail -30 outputs/hpc/logs/dovla_horizon_sweep_${JOB}.out 2>/dev/null echo "" echo "═══════════════════════════════════════════════════════════" echo "If COMPLETED, oracle results will appear in log above." echo "If RUNNING, generation in progress (~20-40 min total)." echo "═══════════════════════════════════════════════════════════"