Find recently modified files

Mar 17

I found this handy when trying to find what parts of typo I had modified (yes, I should really have used svn… maybe next time)


find * -type f -newer /path/to/file

Will find all files in that directory newer than /path/to/file