Created
December 4, 2015 05:01
-
-
Save halfelf/492b3f1aea619d594c9d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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