Find the large files on Linux Get link Facebook X Pinterest Email Other Apps February 09, 2011 Here is what I use to find the large files: find /usr -type f -size +20000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }' Read more