follow mattconroy at http://twitter.com

Finding Large Files Linux

To find large files in linux you can use the find command.

As an example you can find all files that are close to 1GB or over by issuing the command:

find . -type f -size +1000000

The above command will list all files larger than 1GB recursively from the current working directory.

Leave a Reply