Spaces:
Sleeping
Sleeping
File size: 602 Bytes
f0b765c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/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)" |