9 maggio 2013

How find the last files modified in linux

If you want find the last files modified in the last 24 hours you can use this command:

find /path -mtime -1 -print

Furthermore if you want find out only files need add parameter -type f

find /path -type f -mtime -1 -print

Nessun commento: