¿Cómo encontrar archivos grandes en Linux?
diciembre 20, 2009 Deja un comentario
find / -type f -size +20000k -exec ls -lh {} \; 2> /dev/null | awk '{ print $NF ": " $5 }' | sort -nrk 2,2
http://snippets.dzone.com/posts/show/1491
http://www.cyberciti.biz/tips/linux-findinglocating-files-with-find-command-part-2.html

Tremenda Muela