Created
October 22, 2016 14:55
-
-
Save mehmetkose/dcba622cefb4ae9ea928f813fa052e7b to your computer and use it in GitHub Desktop.
project claner
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 . -name "node_modules" -exec rm -rf '{}' +; | |
find . -name "__pycache__" -exec rm -rf '{}' +; | |
find . -name "*.pyc" -exec rm -rf {} \; | |
find . -name "rethinkdb_data" -exec rm -rf '{}'; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment