Autosave: 2024-02-25 19:55:06

This commit is contained in:
thomasabishop 2024-02-25 19:55:06 +00:00
parent c1b26c54da
commit 32f33aa157

View file

@ -5,6 +5,6 @@ find /home/thomas/repos/eolas/img -type f | while read filename; do
rg "${filename##*/}" ../ --type markdown >/dev/null 2>&1
if [ "$?" -eq 1 ]; then
echo "Deleted unused image: ${filename##*/}"
rm $filename
# rm $filename
fi
done