Temukan file yang lebih besar di Linux Centos

du -a -h /path | sort -h -r | head -n 10

OR

du -hs * | sort -rh | head -5
Super Salamander