ls -l -R | nawk '{ if ($5 > 104857600 ) { print $0 }}'
from http://www.codesnippt.com/code.php?id=32
...or you could just:
find . -size -100M
Misc. Sys Admin related notes, Linux tips, tricks, notes to self, etc.
ls -l -R | nawk '{ if ($5 > 104857600 ) { print $0 }}'