eolas/scripts/purge_images.sh
2024-02-25 19:38:14 +00:00

10 lines
344 B
Bash
Executable file

#!/bin/bash
# If there are images in img/ that are not being used by the Zettelkasten, delete them
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
fi
done