Find large files (Linux)

The following command will return all files which are larger than 10Mb:

find / -size +10240000c -exec du -h {} \;

2 Comments so far

  1. The Dude on May 4th, 2009

    Hi,

    Thanks for your tips! You are really helping me out while I am struggling with my Linux-based Pizzabox.

    So, if I want to search in a specific folder, could I just specify the path to the folder after “find”?

    Thanks in advance!

    The Dude.

  2. Ted on May 5th, 2009

    No, to search in a specific folder you must change the first parameter.
    For example in ‘/home/’ instead of ‘/’.

Leave a reply