Using the command line, you can search for files larger than a given filesize using
find /path/to/dir-containing-files -type f -size +1024k
This will search for files larger than 1MB (1024k). Use multiples of 8 to change the filesize number.
Using the command line, you can search for files larger than a given filesize using
find /path/to/dir-containing-files -type f -size +1024k
This will search for files larger than 1MB (1024k). Use multiples of 8 to change the filesize number.
Pingback: Find files greater than any specified size « Linux & Stuff
thank you for this tip 🙂
Thanks very much!
Strange thing is, that possibility doesn’t show up on find’s manpage…