How to find out how much space a directory takes up using Linux?
|
|
|
|
|
Question: How to find out how much space a directory takes up using Linux? Answer: In the command line type the following command within the desired directory
This will give you the usage/size of all the folders within that particular directory.
du = estimate file space usage -c = total To get the size/usage in a Human readable format eg. Megabytes/Gigabites append the -h option to the command above. Example below:
|