To find files larger than 100MB:
find . -type f -size +100MIf you want the current dir only:
find . -maxdepth 1 -type f -size +100MCrafting Web Experiences
//
To find files larger than 100MB:
find . -type f -size +100MIf you want the current dir only:
find . -maxdepth 1 -type f -size +100M