I would like to backup all files older than 90 days and greater plus gzip them. I could execute:
find /path/to/files -type f -mtime 90 -exec gzip "{}" \;
Problem with this command is it includes files 90 days old and not older ones. So it will gzip June's files but not May's. Thanks!