Skip to content

Instantly share code, notes, and snippets.

@raphaelportmann
Created September 18, 2019 08:43
Show Gist options
  • Save raphaelportmann/417db1f529c8f672e65dd7cbb2dc34a6 to your computer and use it in GitHub Desktop.
Save raphaelportmann/417db1f529c8f672e65dd7cbb2dc34a6 to your computer and use it in GitHub Desktop.
Remove all files with a specific extension
# Example with .webp images
# Test run without removal
find . -name "*.webp" -type f
# Delete files
find . -name "*.webp" -type f -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment