find -size
Find files by size
find -size +100M finds files over 100MB. Use k for kilobytes, M for megabytes, G for gigabytes. Essential during disk-full incidents.
Example
$ find /var/log -size +100M
/var/log/app/api.log
Tip: Type it yourself in the terminal below - reading is not the same as doing.