Resize all images in folder
Bash script that finds all images in a folder and resize them to a concrete resolution
Install
sudo apt install imagemagick
Change resolution of all images in folder
find . -maxdepth 1 -iname "*.jpg" | xargs -l -I{} convert -resize 1024x768 "{}" "{}