Find files larger than a given size in Linux

By | January 2, 2009

Using the command line, you can search for files larger than a given filesize using

find /path/to/dir-containing-files -type f -size +1024k

This will search for files larger than 1MB (1024k). Use multiples of 8 to change the filesize number.

3 thoughts on “Find files larger than a given size in Linux

  1. Pingback: Find files greater than any specified size « Linux & Stuff

  2. gervfd

    Thanks very much!
    Strange thing is, that possibility doesn’t show up on find’s manpage…

    Reply

Leave a Reply to Loïc Cancel reply

Your email address will not be published. Required fields are marked *