unix get size of directory code example
Example 1: how to get the size of directory in linux
du -sh /var
Example 2: shell get size of directory
du -h your_directory
# gives you the size of your target directory.
du -hcs your_directory
# If you want a brief output.