Monday, October 19, 2009

Find files larger than a given size in Linux - Ubuntu 9.04 Jaunty

Using the command line, you can search for files larger than a given file size using:

user@machine:~$ find /path/to/directory -type f -size +1024k

This will search for files larger than 1MB (1024k). Obviously you can adjust this number to suite your search requirements.

~Fin

No comments:

Post a Comment