Find large files

Want to search for files over a certain size on your linux box? find / -xdev  -size +100000k -print This will find files larger than 100MB within the root and it’s subdirectories without venturing onto Read more