linux - Scripts: find the files have been changed in last 24 hours -


e.g. mysql server running on ubuntu machine. data had been changed during last 24 hours.

what (linux) scripts can find files have been changed during last 24 hours?

please list file names, file sizes, , modified time.

to find files modified in last 24 hours (last full day) in particular specific directory , sub-directories:

find /directory_path -mtime -1 -ls 

should liking

the - before 1 important - means changed 1 day or less ago. + before 1 instead mean changed @ least 1 day ago, while having nothing before 1 have meant changed exacted 1 day ago, no more, no less.


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -