how to check the folder size in linux code example
Example 1: command to check size of folder in linux
du -lh --max-depth=1 --block-size=M | sort -nr
Example 2: linux how to see directory data usage
du -hs * | sort -rh
du -lh --max-depth=1 --block-size=M | sort -nr
du -hs * | sort -rh