find . -iname "my-file"
find . -not -name "my-file"$ sudo find / -name "version.sh"
$ sudo find / -name "tomcat7"
$ sudo find . -name "*tomcat*"
Listar archivos por un determinado rango de fechas con su detalle
find . -newermt 20190101 -not -newermt 20200101 | xargs ls -lBorrar
find . -newermt 20190101 -not -newermt 20200101 -deletefind . -maxdepth 1 -mtime +450 -type f -print
Un dia antes
find . -maxdepth 1 -mtime -1 -type f -print
find /tmp -maxdepth 1 -mtime -1 -type f -name "DBG_A_sql*" -printhttps://unix.stackexchange.com/questions/73268/how-to-move-the-files-based-on-year https://lamiradadelreplicante.com/2017/05/14/buscar-los-archivos-modificados-en-un-intervalo-de-tiempo-con-find/
https://unix.stackexchange.com/questions/302011/finding-and-deleting-files-with-a-specific-date
https://www.hostinger.es/tutoriales/como-usar-comando-find-locate-en-linux/