Find files modified more than 48 hours ago:
$ find /path -mtime +1
Find files modified more than n=90 days ago (cutoff by the hour, not the day).
$ find /path -mtime +89
Note the +(n-1)
in command. Many online articles got this wrong by simply putting +90
.