Category Archives: cli

Find files larger than a given size in Linux

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.