I have a folderstructure like this:
FOLDER
|
ARTS
|
ORIGINAL
|
---- f01
|
----- f02
.
.
I want to recursively resize all images in that folder to the same resolution.
Can this easily be done with imagemagick ?
Thanks in advance
FOLDER
|
ARTS
|
ORIGINAL
|
---- f01
|
----- f02
.
.
Code: Select all
for x in `find . -type d`
do
(cd $x; mogrify ....)
doneUsers browsing this forum: Google [Bot] and 10 guests