#!/bin/bash
# Automatic Documentation Cleanup for Linux/Mac
# This script automatically answers "yes" to the cleanup prompt

echo "Starting automatic documentation cleanup..."
echo ""

cd "$(dirname "$0")/.."
echo "yes" | php bin/cleanup-docs.php

echo ""
echo "Cleanup complete!"
