Answers for "linux check folder size total"

16

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
5

command to check size of folder in linux

du -lh --max-depth=1 --block-size=M | sort -nr
Posted by: Guest on September-30-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language