folder size command bash code example
Example 1: 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.
Example 2: command to check size of folder in linux
du -lh --max-depth=1 --block-size=M | sort -nr