23
14
Is there an Ubuntu 14.04 terminal command to list the folder size and give a break down of every file size in the folder and its size?
One of my folders is taking a great deal of space, and I'd like to identify which file(s) or subfolders are the culprit.
I know du -sh
gives the total folder size and ls -lah
in each folder gives me files/sub-folder sizes, but is there a way to get an overall snap shot of everything?
Thanks this works great. Is there a way to show the total size within tree? I see the folder/file size it lists out but on the bottom report of total directors and files it scanned, is there a way to also list the size? (e.g., 96 directories, 307 files
total size
) – ride the whirlwinds – 2015-01-27T07:12:16.9671you are welcome. yes there is. add
--du
option liketree -h --du
. – αғsнιη – 2015-01-27T07:15:31.633