[CentOS] "find" switch to find files of a certain size?

Mon Jan 14 07:21:32 UTC 2008
Andreas Kuntzagk <andreas.kuntzagk at mdc-berlin.de>

Am Sonntag, den 13.01.2008, 10:16 +0700 schrieb Fajar Priyanto:
> On Thursday 10 January 2008 23:21:55 techlists at comcast.net wrote:
> > Is there a switch in "find" (or some other command besides find) that'll
> > let you find files larger than a specified size?
> >
> > My file system is 88% full and I'd like to see where the biggest space
> > hoggers are.
> 
> I also found this on the net:
> du /path/to/anywhere/* -hs | grep [0-9]M | sort -rn | head -20

This only shows you usage for directories less than 1GB. (and more than
1MB)
To see all:

du /path/to/anywhere/* -s | sort -rn | head -20