You are not logged in.
Pages: 1
Hi, I am trying to find out how to copy files by date, or preferably by date and time.
I have 21,000 files, of which about 1000 need to be resubmitted to a mail queue. The only real differentiating factor is the date and time of creation.
Any one here know of any utilities?
Kind regards
Benedict White
Offline
I would say use find and use the -exec option to copy
e.g.
find /path -mtime 10 -exec cp {} ;
You have to check the syntax but that should easily cover it - have a good read of the find man pages
Offline
Pages: 1