Qual comando encontra arquivos regulares maiores que 100 MB abaixo do diretório atual?
find . -type d -size +100M
find . -type f -size -100M
du . -type f -size +100M
find . -type f -size +100M