Skip to content

Instantly share code, notes, and snippets.

@mbijon
Created January 20, 2014 09:57
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 mbijon/8517635 to your computer and use it in GitHub Desktop.
Save mbijon/8517635 to your computer and use it in GitHub Desktop.
Regnerate avatar thumbnails in BuddyPress
# From: /wp-content/uploads/group-avatars
find . -type f -name '*.jpg' -print0 | while IFS= read -r -d '' f; do
mv -- "$f" "${f%.jpg}.png"
done
@saxisme
Copy link

saxisme commented Jun 7, 2014

Hi,

how/where do I execute this script?
Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment