On 31/05/24 at 02:18, Greg Wooledge wrote:
Confusing and useless.  I still don't have a better answer than this:

hobbit:~$ tree --du -Fh /tmp/x | grep /$
[7.8M]/tmp/x/
└── [4.0K]  y/

It could be improved adding the "-a" switch to show also the hidden directories and the "--color" switch to the "grep" command but this sadly doesn't show the expected result (colorized directories) I don't know why:

~$ tree --du -Fah /tmp/x | grep --color /$

Me too needed to summarize the directory's size thus I wrote a bash function to accomplish this and added it to my /etc/profile.d/local.sh file:

duhs() { IFS=$'\n\r' ; for d in $(/usr/bin/find $1 -maxdepth 1 -type d |/usr/bin/sort) ; do du -hs $d ; done }

It doesn't show the output like "tree" does but it works nicely.

Cheers,
--
Franco Martelli

Reply via email to