find and copy file using Bash
I would recommend using find
's -exec
option:
find . -ctime 15 -exec cp {} ../otherfolder \;
As always, consult the manpage for best results.
I usually use this one:
find . -ctime -15 -exec cp {} ../otherfolder/ \;