OpenVideoAI/keywords2images.sh

17 lines
380 B
Bash
Raw Normal View History

2024-01-19 13:29:09 -06:00
while IFS= read -r line; do
./image-finder.sh "$line"
done < script-keywords.txt
# Navigate to the img/ directory
cd img/
# Find and delete images not divisible by 2
find . -type f -exec bash -c 'if [ $(identify -format "%h" "{}")%2 -ne 0 ]; then rm "{}"; fi' \;
2024-01-19 14:09:20 -06:00
# Find files with 0 size
find . -type f -size 0 -delete
2024-01-19 13:29:09 -06:00
# Return to the original directory (optional)
cd ..