| # Trash bucket 20260428T105155Z | |
| Generated by `scripts/migration_2026/phase5_cleanup.py`. | |
| Holds the OLD fisheye `clips/` and `downloads/` directories | |
| belonging to 36 drives that were successfully | |
| migrated to rectified clips. The migration manifest paths now point | |
| to the rectified clips under `_backup/clips_rectified/`, so these old | |
| files are no longer referenced by code. | |
| ## Reclaim numbers | |
| - Clips dirs moved : 36 | |
| - Downloads dirs moved : 36 | |
| - Total clips bytes : 31.74 GB | |
| - Total downloads bytes: 27.36 GB | |
| - TOTAL : 59.10 GB | |
| - Errors : 0 | |
| - Elapsed : 63.9s | |
| ## To roll back this trash bucket (restore everything) | |
| ```bash | |
| for d in $(ls /data/sltian/data/egotools/_backup/trash_20260428T105155Z); do | |
| [ -d /data/sltian/data/egotools/_backup/trash_20260428T105155Z/$d/clips ] && mv /data/sltian/data/egotools/_backup/trash_20260428T105155Z/$d/clips /home/data2/sltian/code/egotools_dev/workspace/sources/$d/ | |
| [ -d /data/sltian/data/egotools/_backup/trash_20260428T105155Z/$d/downloads ] && mv /data/sltian/data/egotools/_backup/trash_20260428T105155Z/$d/downloads /home/data2/sltian/code/egotools_dev/workspace/sources/$d/ | |
| done | |
| ``` | |
| ## To permanently delete (ONLY after 30 days and you are sure) | |
| ```bash | |
| rm -rf /data/sltian/data/egotools/_backup/trash_20260428T105155Z | |
| ``` | |