Created
November 29, 2020 20:38
-
-
Save byk0t/8f42d80ca0f4cb300858606c2c827f83 to your computer and use it in GitHub Desktop.
Resize (by width) all images in the folder by single command (using imagemagick convert)
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 *.jpg; do convert $file -resize 1000 $file; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment