Posts

Showing posts from February, 2011

Find the large files on Linux

Here is what I use to find the large files: find /usr -type f -size +20000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'