update clean image dir script to use eolas

This commit is contained in:
thomasabishop 2023-04-17 07:03:50 +01:00
parent dee01c5424
commit 7f7454b5e5

View file

@ -1,7 +1,7 @@
#!/bin/bash
# If there are images in _img/ that are not being used in the workspace, delete them
find /home/thomas/repos/computer_science/_img -type f | while read filename; do
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##*/}"