Use the -exec option for find:
find . -mtime -90 -exec cp {} targetdir \;
-exec would copy every result returned by find to the specified directory (targetdir in the above example).
Use the -exec option for find:
find . -mtime -90 -exec cp {} targetdir \;
-exec would copy every result returned by find to the specified directory (targetdir in the above example).