Skip to content

Instantly share code, notes, and snippets.

@alispx
Last active October 6, 2015 09:15
Show Gist options
  • Save alispx/445e268d91f636b19e34 to your computer and use it in GitHub Desktop.
Save alispx/445e268d91f636b19e34 to your computer and use it in GitHub Desktop.
#!/bin/bash
find . -type d -iname .git | xargs rm -rf
find . -type d -iname .sass-cache | xargs rm -rf
find . -type f -iname .gitignore | xargs rm -rf
find . -type f -iname .DS_Store | xargs rm -rf
find . -type f -iname config.codekit | xargs rm -rf
find . -type f -iname screen.css.map | xargs rm -rf
find . -type f -iname rtl.css.map | xargs rm -rf
find . -type f -iname config.rb | xargs rm -rf
find . -type d -iname sass | xargs rm -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment