Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@yuanmai
Created December 30, 2012 06:40
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuanmai/4411286 to your computer and use it in GitHub Desktop.
Save yuanmai/4411286 to your computer and use it in GitHub Desktop.
remove all elc files in your emacs folders
find . -name "*.elc" -type f | xargs rm -f
@mgrachten
Copy link

equivalent:

find . -name "*.elc" -type f -delete

@skcho
Copy link

skcho commented Mar 10, 2023

Thank you!

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