check disk space ubuntu from terminal

C++
# shows total, available, and used.
df / -h#report file system disk space usage
df -h
or
sudo du -sh ./*
or
du -h -s *
#check space with  path
df / -h
or 
df -h /

#check space with  type
df -Thdf -hdf -t ext4
Source

Also in C++: