Find all files modified since a give date/time on a Linux System

Most of the time a finde -mtime x does a good job. But it not always return the expected results 🙁 But you just need to use on of the other options 🙂

find -newermt '2016-08-01T00:00:00'

Will return all files modified since the give timestamp.