Find the biggest home directories.
sudo du -sch /home/* | grep "M\G" | sort -g
Find file size in current dir, sorted by size:
du -h | sort -n