Find All Files Modified Recently in Linux

From HowToGeek

Jump to: navigation, search

Sometimes you just want to find all the files that were recently modified on your linux box. This is pretty easy to accomplish with the find command by passing in the mmin argument.

The following command will show all files modified in the last 99 minutes.

sudo find / -mmin 99 -type f