Cerrado

Desde
16 Oct 2010
Mensajes
3.090
SI tienes acceso al ssh tal vez puedas usar la opción atime de find.


Aquí las opciones que te pueden servir.

Insertar CODE, HTML o PHP:
       -amin n
              File was last accessed n minutes ago.

       -anewer file
              File was last accessed more recently than file was modified.  If
              file is a symbolic link and the -H option or the -L option is in
              effect, the access time of the file it points to is always used.

       -atime n
              File was last accessed n*24 hours ago.  When  find  figures  out
              how  many  24-hour  periods  ago the file was last accessed, any
              fractional part is ignored, so to match -atime +1, a file has to
              have been accessed at least two days ago.

       -cmin n
              File's status was last changed n minutes ago.

       -cnewer file
              File's status was last changed more recently than file was modi‐
              fied.  If file is a symbolic link and the -H option  or  the  -L
              option  is  in  effect,  the  status-change  time of the file it
              points to is always used.

       -ctime n
              File's status was last changed n*24 hours ago.  See the comments
              for -atime to understand how rounding affects the interpretation
              of file status change times.

Si no tienes ssh tal vez puedas hacer un script con shell_exec y guardando la salida en un fichero aparte.

Otra cosa no se me ocurre.
 

glopi

Beta
Verificado por Whatsapp
Desde
1 Jul 2014
Mensajes
138
Gracias por la rápida respuesta!

He conseguido entrar por ssh y ejecutando la orden los he listado todos:

Insertar CODE, HTML o PHP:
find . -atime +28 -name "*.php" > ficheros.txt
y
Insertar CODE, HTML o PHP:
find . -name "*.php" > ficheros2.txt

Comparando las diferencias entre los dos ficheros he podido afinar un poco más. Ahora a comprobar uno a uno la validez de los resultados.

Repito, gracias y un saludo :p8:
 
Arriba