Skip to content

Instantly share code, notes, and snippets.

@michilehr
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michilehr/98d2fdd749e98779862f to your computer and use it in GitHub Desktop.
Save michilehr/98d2fdd749e98779862f to your computer and use it in GitHub Desktop.
Resize images by find and save with new name recursively with bash
find . -name 'preview_image*-default-*' -print0 | xargs -0 -L 1 -I {} bash -c 'f="{}"; convert -compress JPEG -resize 238 "$f" "${f/-default-/-resp-}"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment