Skip to content

Instantly share code, notes, and snippets.

@innermond
Created October 6, 2020 10:46
Show Gist options
  • Save innermond/17e5e6ab3f0c09d909c98b9bdaca33e9 to your computer and use it in GitHub Desktop.
Save innermond/17e5e6ab3f0c09d909c98b9bdaca33e9 to your computer and use it in GitHub Desktop.
thumbify images or image-like series
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