find - Apply exiftran recursivly (rotate all images based on their EXIF info) - Ask Ubuntu
i execute exiftran
on .jpg files recursively below current directory.
exiftran -ai *
need (apply rotation based on exif info) within current directory, not within subdirectories.
is there flag don't know of? or workaround using find
?
i used find achieve this:
find . -type f -name "*.jpg" -exec exiftran -ai "{}" \;
Comments
Post a Comment