summaryrefslogtreecommitdiff
path: root/doc/forum/__34__du__34___equivalent_on_an_annex__63__/comment_2_28ba62a546f5cc8f416491423d743d8a._comment
blob: f75e2e587f5aa5f306cd524abb21bc95c32ef01a (plain)
1
2
3
4
5
6
7
8
9
10
[[!comment format=mdwn
 username="http://sunny256.sunbase.org/"
 nickname="sunny256"
 subject="comment 2"
 date="2012-11-28T23:24:11Z"
 content="""
Opps, seems as you want to find the biggest files in a directory tree. That can also be done:

    $ find -type l -print0 | xargs -0 du -L | sort -n
"""]]