cant believe i cant get this right, but anyways,
the string is this
find /example/* -mtime +90 -exec cp /var/scratch/ {} \;
basically i want to copy all files older than 90 days to /var/scratch
I suppose i could tar them first, then copy that .tar to the location, but the files are all already tar archives, and i now wanna do it this way..
any ideas?
the string is this
find /example/* -mtime +90 -exec cp /var/scratch/ {} \;
basically i want to copy all files older than 90 days to /var/scratch
I suppose i could tar them first, then copy that .tar to the location, but the files are all already tar archives, and i now wanna do it this way..
any ideas?