This commit is contained in:
relikd
2024-02-26 22:03:19 +01:00
commit 996e504a9f
15 changed files with 1318 additions and 0 deletions

10
tools/check_missing_img.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Find files where a plist exists but an image is missing (should be run after image_optim).
cd "$(dirname "$0")" || exit
for file in ../data/*/*.plist; do
if [ ! -f "${file%.plist}.jpg" ]; then
idx=${file##*/}
echo "${idx%.*}";
fi;
done