Search for large files using size filters.
Section: Find by Size and Time
Find files larger than 100 MB
bash
bash
find / -type f -size +100M 2>/dev/nullLearn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Find by Size and Time
Find files modified in last 1 day
Use mtime to find recently modified files.
Find files newer than reference file
Compare timestamps using a reference path.