Skip to content

Instantly share code, notes, and snippets.

@bingoohuang
Created July 26, 2018 01:23
Show Gist options
  • Save bingoohuang/5ae786fad495e5d5c1b3b5c7de7e06c9 to your computer and use it in GitHub Desktop.
Save bingoohuang/5ae786fad495e5d5c1b3b5c7de7e06c9 to your computer and use it in GitHub Desktop.
Remove all target directories for all maven projects located in current directory.
find . -type d -name "target" -maxdepth 2 | xargs rm -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment