How to list the Sizes of Folders and Directories in Linux
Very simply, I wanted an easy way to list out the sizes of directories and all of the contents of those directories recursively. df will show the total disk usage ls -l will show you sizes of items in a folder. The answer is to use the following: du -h… Continue reading