Answers for "command to check size of folder in linux"

8

how to get the size of directory in linux

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

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
1

find folder size in linux

df -sh .
Posted by: Guest on February-20-2021
2

linux how to see directory data usage

du -hs * | sort -rh
Posted by: Guest on June-29-2020

Code answers related to "command to check size of folder in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language