Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Apr 2003 19:27:06 +1200
From:      Jonathan Chen <jonc@chen.org.nz>
To:        Michael Salsky <mishke@hotmail.com>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: Need to find files over a certain size.
Message-ID:  <20030415072705.GB47535@grimoire.chen.org.nz>
In-Reply-To: <000001c3030c$9d6d6930$040013ac@goofy>
References:  <000001c3030c$9d6d6930$040013ac@goofy>

next in thread | previous in thread | raw e-mail | index | archive | help
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@chen.org.nz>
----------------------------------------------------------------------
    The Internet: an empirical test of the idea that a million monkeys
                banging on a million keyboards can produce Shakespeare



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030415072705.GB47535>