Resize all images in folder

Bash script that finds all images in a folder and resize them to a concrete resolution

Last update: 2023-10-19

Install

sudo apt install imagemagick

Change resolution of all images in folder

find . -maxdepth 1 -iname "*.jpg" | xargs -l -I{} convert -resize 1024x768 "{}" "{}