show folder space linux code example
Example 1: command line size of directory
# The -s flag will insure that each specific entry is calculated,
# and the -h flag will make the output in human readable size format
du -sh /directory/path
Example 2: Get the size of all the directories in current directory in linux
du -h --max-depth=1