How to Find Large Files on Linux

To find large files, use:

find . -type f -size +100M

This searches for files larger than 100MB.

👉 Build your own command: Find Command Builder

👉 Practice it: Find Quiz

👉 Reference: Find Cheat Sheet