GNU Find Examples
Find files based on "creation" time
Normally I use ctime, but there was one directory that was constantly being changed. Ended up using mtime since the file contents never changed.
find /somedir/ -type f -mtime -90
Relative paths
find /somedir/ -type f -exec realpath --relative-to /somedir {} \;