Atlas / scripts /maintenance /run_analysis.sh
findEthics
Complete codebase cleanup and project structure validation
f0b765c
Raw
History Blame Contribute Delete
602 Bytes
#!/bin/bash
"""
Wrapper script to run codebase backup and analysis
This script runs the backup_and_analyze.py script and provides
easy access to the backup and analysis functionality.
"""
echo "Running codebase backup and analysis..."
echo "========================================"
# Change to project root directory
cd "$(dirname "$0")/../.."
# Run the analysis script
python3 scripts/utilities/backup_and_analyze.py
echo ""
echo "Analysis complete!"
echo "Check the following files for results:"
echo "- analysis_report.json (detailed analysis)"
echo "- backups/ directory (timestamped backup)"