<div dir="ltr"><div><div><div>Hi Everyone,<br><br></div>I came across this handy little script which is similar to the windows application Treesize. Just drop the script into the /bin, change to the directory you would like to "tresize" and just run treesize.<br>
<br>#/bin/sh<br>du -k --max-depth=1 | sort -nr | awk '<br>     BEGIN {<br>        split("KB,MB,GB,TB", Units, ",");<br>     }<br>     {<br>        u = 1;<br>        while ($1 >= 1024) {<br>           $1 = $1 / 1024;<br>
           u += 1<br>        }<br>        $1 = sprintf("%.1f %s", $1, Units[u]);<br>        print $0;<br>     }<br><br></div>Hope you find this helpful.<br><br></div>Cheers<br><div><div><br><div><div></div></div>
</div></div></div>