André Amorim

Crafting Web Experiences

//

List files larger than 100MB

To find files larger than 100MB:

find . -type f -size +100M

If you want the current dir only:

find . -maxdepth 1 -type f -size +100M

Published date:

Modified date: