Resize all images, rename all images
1 min readJan 9, 2020
find thumbs -depth -exec rename ‘s/(.*)\/([^\/]*)/$1\/\L$2/’ {} \;
find thumbs -iname ‘*.jpg’ -exec convert \{} -verbose -resize x133\> \{} \;
Rename all images in thumbs folder and resize all jpg files with 133 height
Simple, useful, beneficial :)