Find files by date

An easy way to search for files within a daterange:

$ touch --date "1970-01-01" /tmp/start
$ touch --date "2038-01-19" /tmp/end
$ find /location -newer /tmp/start -not -newer /tmp/end