Need to find files over a certain size.

Jonathan Chen jonc at chen.org.nz
Tue Apr 15 00:27:08 PDT 2003


On Tue, Apr 15, 2003 at 03:05:21PM +1000, Michael Salsky wrote:
> Hi everyone,
> 
> I've read the man page on the 'find' command and couldn't find the
> answer. I'm wanting to find all files on the files system bigger than
> 100Mb.

Use find's -size option. You could use something like:

    find / -size 100000000c -print

Check the man page for more details.
-- 
Jonathan Chen <jonc at chen.org.nz>
----------------------------------------------------------------------
    The Internet: an empirical test of the idea that a million monkeys
                banging on a million keyboards can produce Shakespeare


More information about the freebsd-questions mailing list