Find

Pesquisar String no Linux

 find . -iname "*nomedoarquivo*" -mtime -3 

Por tamanho dos arquivos

c bytes
k: Kilobytes
M: Megabytes
G: Gigabytes
b: blocos de 512 bytes
 find . -size +10G -type f -exec du -h {} \;