# du -a /home | sort -n -r | head -n 5
# du -a | sort -n -r | head -n 5 # du -hs * | sort -rh | head -5 # du -Sh | sort -rh | head -5
# find -type f -exec du -Sh {} + | sort -rh | head -n 5 # find /home/tecmint/Downloads/ -type f -exec du -Sh {} + | sort -rh | head -n 5 # find /home/tecmint/Downloads/ -type f -printf ā%s %p\nā | sort -rn | head -n 5