Skip to content

Instantly share code, notes, and snippets.

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 vishaltelangre/e60095d257d38cd1a51c302d1a8d8118 to your computer and use it in GitHub Desktop.
Save vishaltelangre/e60095d257d38cd1a51c302d1a8d8118 to your computer and use it in GitHub Desktop.
#mac #osx recursively delete all #exe files
find . -name '*exe' -exec rm -rf {} \;
@RevScandal
Copy link

find . -name '*exe' -delete

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