Linux: Find large files on your Linux box.
by The Uni-Hacker on Sep.30, 2008, under Misc
The command to do this is the find command:
#!/bin/sh
find / -size +50000000c -print -ls
Change the file size for your needs, great for finding those annoyingly large files.