I like tree
it's a nice way to display my files and the size of folders/directories. But the -h option only shows the size of the directory, not the cumulative size of its contents.
/media/
├── [ 16K] 64D9-E862
│ ├── [8.0K] downloads
I know for a fact that my external drive has more that 16kB in it.
How can I fix that with tree 1.5? Better yet how do I upgrade to 1.6?
-a
option to output locations which are hidden (start with a dot, e.g. .cache) – awatts Oct 03 '19 at 14:26-d
option. I just want to see directory sizes and not file sizes withtree
– Shayan Mar 12 '22 at 17:30tree --du -h -L 2
this does not work. – Dave Oct 01 '22 at 15:15