shinka-backup / scripts /dev /5_cleanup.sh
JustinTX's picture
Add files using upload-large-folder tool
3f6526a verified
#!/bin/bash
# Cleanup test results and restart fresh
set -e
echo "=================================="
echo "🧹 Cleanup"
echo "=================================="
echo ""
echo "This will remove:"
echo " - /tmp/quick_test_eval_service/"
echo " - /tmp/test_integration_*/"
echo ""
read -p "Continue? (y/N) " -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
echo "Cancelled"
exit 1
fi
# Cleanup temporary test directories
echo "🧹 Removing test directories..."
rm -rf /tmp/quick_test_eval_service
rm -rf /tmp/test_integration_*
echo "✅ Cleanup complete"
echo ""
echo "Note: Full experiment results in examples/circle_packing/results/ are preserved"
echo ""