Home Linux Utils
find files modified in the last 24 hours

find . -type f -mtime 1 -exec ls -al {} \; > /tmp/filesModified

and

find . -type f -mmin -1440 -exec ls -al {} \; > /tmp/filesModified