# remove spaces and replace with underscores shopt -s globstar nullglob rename "s/ /_/g" images/**/* # create small versions of jpg images # replace with show name (make sure to make both folders first) mogrify -path images/small/ -strip -thumbnail 300x199 -quality 60% images/large//*.jpg mogrify -path images/small/home -strip -thumbnail 300x199 -quality 60% images/large/home/*.jpg mogrify -path images/small/algarve -strip -thumbnail 300x199 -quality 60% images/large/algarve/*.jpg mogrify -path images/small/cuba -strip -thumbnail 300x199 -quality 60% images/large/cuba/*.jpg mogrify -path images/small/archeology -strip -thumbnail 200x200 -quality 60% images/large/archeology/*.jpg mogrify -path images/small/angkor_wat -strip -thumbnail 300x199 -quality 60% images/large/angkor_wat/*.jpg mogrify -path images/small/iceland -strip -thumbnail 300x199 -quality 60% images/large/iceland/*.jpg mogrify -path images/small/pattaya -strip -thumbnail 300x199 -quality 60% images/large/pattaya/*.jpg mogrify -path images/small/europe -strip -thumbnail 300x199 -quality 60% images/large/europe/*.jpg mogrify -path images/small/ontario -strip -thumbnail 300x199 -quality 60% images/large/ontario/*.jpg