Skip to content

Instantly share code, notes, and snippets.

@fedir
Created April 16, 2013 09:57
Show Gist options
  • Save fedir/5394772 to your computer and use it in GitHub Desktop.
Save fedir/5394772 to your computer and use it in GitHub Desktop.
Find the size of all folders ignoring .svn #shell
find . -not -iwholename '*.svn*' -print0 | xargs -r0 du -shc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment