| # Trash bucket 20260429T094101Z | |
| Generated by `scripts/migration_2026/phase5_cleanup.py`. | |
| Holds the OLD fisheye `clips/` and `downloads/` directories | |
| belonging to 77 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 : 41 | |
| - Downloads dirs moved : 39 | |
| - Total clips bytes : 48.07 GB | |
| - Total downloads bytes: 40.06 GB | |
| - TOTAL : 88.13 GB | |
| - Errors : 0 | |
| - Elapsed : 72.2s | |
| ## To roll back this trash bucket (restore everything) | |
| ```bash | |
| for d in $(ls /data/sltian/data/egotools/_backup/trash_20260429T094101Z); do | |
| [ -d /data/sltian/data/egotools/_backup/trash_20260429T094101Z/$d/clips ] && mv /data/sltian/data/egotools/_backup/trash_20260429T094101Z/$d/clips /home/data2/sltian/code/egotools_dev/workspace/sources/$d/ | |
| [ -d /data/sltian/data/egotools/_backup/trash_20260429T094101Z/$d/downloads ] && mv /data/sltian/data/egotools/_backup/trash_20260429T094101Z/$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_20260429T094101Z | |
| ``` | |