So I came across a cool tip today for finding files that were created past a certain date.
I wanted to find all the files created after a specific file, and the following one liner does just that
find / -newer testfilename -print
if you dont have a specific file then you can make one easily..
touch -t 200807160001 testfilename