Skip to content

Instantly share code, notes, and snippets.

@mehmetkose
Created October 22, 2016 14:55
Show Gist options
  • Save mehmetkose/dcba622cefb4ae9ea928f813fa052e7b to your computer and use it in GitHub Desktop.
Save mehmetkose/dcba622cefb4ae9ea928f813fa052e7b to your computer and use it in GitHub Desktop.
project claner
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