How to find large files in Linux

Channel:
Subscribers:
201
Published on ● Video Link: https://www.youtube.com/watch?v=B_fqMiTZVP4



Category:
Guide
Duration: 0:09
19 views
0


Hi everyone! Let's learn how to find large files in Linux. It's super easy!

In your terminal, type:
find /path/to/search -type f -size +100M
This finds files larger than 100MB in the specified path.