Created
October 6, 2020 10:46
-
-
Save innermond/17e5e6ab3f0c09d909c98b9bdaca33e9 to your computer and use it in GitHub Desktop.
thumbify images or image-like series
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 img in <path/to/images>/*<.extension>; do noext="${img%.*}"; other=<path/to/thumb>/"${noext#*/}".<other-extension>; convert -resize 300x "$img" "$other" ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment