how to check the space of peticular folder in linux code example
Example 1: how to get the size of directory in linux
du -sh /var
Example 2: linux how to see directory data usage
du -hs * | sort -rh
du -sh /var
du -hs * | sort -rh