Created
June 13, 2018 17:43
-
-
Save eczajk1/813bab936962772d733cdda49bfdb92b to your computer and use it in GitHub Desktop.
Use ImageMagick to resize a folder of JPG files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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