linux command to know the size of a dir code example
Example 1: how to get the size of directory in linux
du -sh /var
Example 2: command to check size of folder in linux
du -lh --max-depth=1 --block-size=M | sort -nr
du -sh /var
du -lh --max-depth=1 --block-size=M | sort -nr