easy way to find large files

find / -type f -size +20000 -exec ls -lh {} \;| awk '{ print $9 ": " $5 }'   

I’m always looking for clever ways to find large files, I found this one here

~ by mykemp on January 12, 2008.

Leave a Reply