once we have a spreadsheet, eli and andy will review and flag users for deletion. then we will
echo "date,time,size_gb,username" > users_home_audit.csv
find /home/jovyan/allusers -mindepth 1 -maxdepth 1 -type d \
-printf '%T@,%TY-%Tm-%Td,%TH:%TM,%p\n' \
| sort -nr \
| while IFS=',' read -r epoch date time dir; do
size_gb=$(du -s "$dir" 2>/dev/null | awk '{printf "%.2f", $1/1024/1024}')
user=$(basename "$dir")
printf "%s,%s,%s,%s\n" "$date" "$time" "$size_gb" "$user"
done >> users_home_audit.csv
@ateucher Follow-up notes per nmfs-openscapes hub
once we have a spreadsheet, eli and andy will review and flag users for deletion. then we will
then
* remove 2024-champions-cohort from the prod.yaml
* remove 2024-coastwatch (which was for OHW25)
* change team names to new names
team naming notes
code to get username, last mod file date and dir size