If you are decent with bash, you should really show your work. And share the actual filenames. That way we don't have to guess like I have here.
If they are named with the date then you can simply copy it with a date of today:
Code:
today=$(date +%d-%m-%Y)
cp report-$today /some/folder
Or if you want to copy only the newest report to a folder:
Code:
newest=$(ls -t report* | head -n1)
cp $newest /some/folder
Or if you want to get fancy and copy the newest report since 12am:
Code:
touch -t $(date +%m%d0000) /tmp/today
find . -type f -newer /tmp/today -exec cp {} /some/folder \;