how to copy current date files to another dir

i have directory /abcd and i want to copy all today date files in /xyz directory.

i am able to see the files by using below command but not able to understand copy.


find . -mtime -1  -type f -exec ls -l {} \;

find /abcd -mtime -1  -type f -exec cp {} /xyz/ \;
1 Like

Thanks @jim mcnamara