Answers for "resize image command-line recursively on all files"

1

resize image command-line recursively on all files

#creates copies of the images
find . -name "*.jpg" | xargs convert -resize 50%
# convert them in place, you can use:
find . -name "*.jpg" | xargs mogrify -resize 50%
Posted by: Guest on May-05-2022

Code answers related to "resize image command-line recursively on all files"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language