Skip to content

Instantly share code, notes, and snippets.

@patrickhammond
Created August 6, 2014 17:37
Show Gist options
  • Save patrickhammond/b56b03c0cf7dcc3284e7 to your computer and use it in GitHub Desktop.
Save patrickhammond/b56b03c0cf7dcc3284e7 to your computer and use it in GitHub Desktop.
Remove all IntelliJ/Android Studio project files
#!/bin/sh
find . -name *.iml -print0 | xargs -0 rm
rm -rf .idea/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment