Created
February 15, 2018 23:20
-
-
Save chenhong805/b2632fc9aa15fdd36ba9a75696d1c9c0 to your computer and use it in GitHub Desktop.
clean java/scala intellij work place
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
#!/bin/bash | |
rm -rf .idea | |
find . -type f -name "*.iml" | xargs -I {} rm {} | |
find . -type d -name "*target*" | grep -v 'src' | xargs -I {} rm -rf {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment