linux get size of dir code example
Example 1: how to check folder size in linux
# show all folder size in the current directory
du -h --max-depth=1
Example 2: how to get the size of directory in linux
du -sh /var
# show all folder size in the current directory
du -h --max-depth=1
du -sh /var