Files
carputer/templates/purge_thumbnails.sh.j2
2025-08-03 17:18:58 -07:00

10 lines
316 B
Django/Jinja

#!/bin/bash
TARGET_DIR="{{ working_folder }}/small_thumbs"
cd "$TARGET_DIR" || exit
# Find all files, sort them by modification time (oldest first), and delete all but the 50 most recent
ls -t | tail -n +51 | while read -r file; do
if [ -f "$file" ]; then
# echo "Deleting file: $file"
rm "$file"
fi
done