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