Archive for February, 2009

Find large files (Linux)

The following command will return all files which are larger than 10Mb:

find / -size +10240000c -exec du -h {} \;