]> git.lizzy.rs Git - dirlistozxa.git/blob - gen-thumbs
Fix handling spaces and other encoded characters in folder names
[dirlistozxa.git] / gen-thumbs
1 #!/bin/bash
2
3 # Generates thumbs
4
5 rm -rf .thumbs/
6 mkdir .thumbs
7
8 find \( -iname "*.png" -or -iname "*.jpg" -or -iname "*.jpeg" -or -iname "*.jfif" -or -iname "*.gif" -or -iname "*.webp" \) -exec bash -c 'mogrify -path .thumbs/ -auto-orient -thumbnail 128x128 -quality 90% "{}" &' \;