Answers for "how to find the size of a directory in linux"

27

how to check folder size in linux

# show all folder size in the current directory
du -h --max-depth=1
Posted by: Guest on January-18-2021
16

Get the size of all the directories in current directory in linux

du -h --max-depth=1
Posted by: Guest on April-14-2020
8

how to get the size of directory in linux

du -sh /var
Posted by: Guest on June-24-2020
2

get folder size linux

#This shows you the folder size in human readable format

sudo du -sh /folder
Posted by: Guest on November-26-2021
0

linux folder size

du -sh -- *
Posted by: Guest on October-18-2021
1

Linux folder size

du -sh /* | sort -h
Posted by: Guest on November-29-2021

Code answers related to "how to find the size of a directory in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language