Skip to content

Instantly share code, notes, and snippets.

@eczajk1
Created June 13, 2018 17:43
Show Gist options
  • Select an option

  • Save eczajk1/813bab936962772d733cdda49bfdb92b to your computer and use it in GitHub Desktop.

Select an option

Save eczajk1/813bab936962772d733cdda49bfdb92b to your computer and use it in GitHub Desktop.
Use ImageMagick to resize a folder of JPG files
for file in $(ls *.jpg); do magick ${file} -resize 640x640 ./out/${file}; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment