i received this from another source:
Ok, then you should try something like this:
xcp copy -match “created < 1*year” <source> <target>
xcp copy -match “modified < 1*year” <source> <target>
- “*year” can be changed with any other period of time (hour, day, month, year)
The given examples can be combined to a single command to filter the files created and modified in the same time.
xcp copy -match “created < 1*year and modified < 1*year” <source> <target>
if you want to find more details about how to use the match filter please run “xcp help -match” command.