Znajdź pliki RM

## Somente arquivos
find /u01/app/oracle/product/diag/rdbms/r1/r1/cdump -type f -mtime +5 -exec rm -fR {} \;
## Diretorios também
find /u01/app/oracle/product/diag/rdbms/r1/r1/cdump -maxdepth 1 -mtime +1 -exec rm -fR {} \;
Disgusted Deer