Autosave: 2024-03-01 09:02:37

This commit is contained in:
thomasabishop 2024-03-01 09:02:37 +00:00
parent bb1e3a7051
commit 31cc26249c

View file

@ -9,7 +9,7 @@ find "/home/thomas/repos/eolas/img" -type f | while read filename; do
# If the image is not found in any file, delete it
if [ -z "$search_result" ]; then
echo "Deleted unused image: ${filename##*/}"
# rm $filename
rm $filename
fi
done