Skip to content

Instantly share code, notes, and snippets.

@chenhong805
Created February 15, 2018 23:20
Show Gist options
  • Save chenhong805/b2632fc9aa15fdd36ba9a75696d1c9c0 to your computer and use it in GitHub Desktop.
Save chenhong805/b2632fc9aa15fdd36ba9a75696d1c9c0 to your computer and use it in GitHub Desktop.
clean java/scala intellij work place
#!/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