eolas/scripts/purge_images.sh

12 lines
353 B
Bash
Raw Normal View History

2022-12-27 18:30:05 +00:00
#!/bin/bash
2024-02-25 19:38:14 +00:00
# If there are images in img/ that are not being used by the Zettelkasten, delete them
2024-02-25 19:42:06 +00:00
find /home/thomas/repos/eolas/img -type f | while read filename; do
2024-02-25 19:57:22 +00:00
pwd
rg "${filename##*/}" ../ --type markdown >/dev/null 2>&1
2022-12-27 18:30:05 +00:00
if [ "$?" -eq 1 ]; then
echo "Deleted unused image: ${filename##*/}"
2024-02-25 19:55:06 +00:00
# rm $filename
2022-12-27 18:30:05 +00:00
fi
done