List files larger than 100MB

To find files larger than 100MB:

find . -type f -size +100MCode language: Bash (bash)

If you want the current dir only:

find . -maxdepth 1 -type f -size +100MCode language: Bash (bash)

Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.