Possible Duplicate:
How to know the size of a directory?
If I run
ls -lh
then any given directory is just shown as 4.0K. How can I can make it consider the files the directory refers to as well?
Possible Duplicate:
How to know the size of a directory?
If I run
ls -lh
then any given directory is just shown as 4.0K. How can I can make it consider the files the directory refers to as well?
Use du -h
and all directories and their subdirectories are being aggregated. (The -h makes it human readable as in useful units like MB, GB or KB)