Skip to content

Instantly share code, notes, and snippets.

@halfelf
Created December 4, 2015 05:01
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 halfelf/492b3f1aea619d594c9d to your computer and use it in GitHub Desktop.
Save halfelf/492b3f1aea619d594c9d to your computer and use it in GitHub Desktop.
# Find and then delete all files under current directory (.) that:
# 1. contains cmake (case-&insensitive) in it's path (wholename)
# 2. name is not CMakeLists.txt
find . -iwholename '*cmake*' -not -name CMakeLists.txt -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment