Created
April 16, 2013 09:57
-
-
Save fedir/5394772 to your computer and use it in GitHub Desktop.
Find the size of all folders ignoring .svn #shell
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
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