Skip to content

Instantly share code, notes, and snippets.

@lukecav
Created June 3, 2022 17:50
Show Gist options
  • Save lukecav/b9d417c934af66d35a402634871892ca to your computer and use it in GitHub Desktop.
Save lukecav/b9d417c934af66d35a402634871892ca to your computer and use it in GitHub Desktop.
Find and delete all WebP images in the uploads folder of WordPress
cd public_html
cd wp-content/uploads
find . -name "*.webp" -type f
find . -name "*.webp" -type f -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment