BASH - Find - Find new files

This shows the top 10 files created at most two days ago.

sudo find /home ! -mtime +1 -type f -printf "%s %p\n" 2> /dev/null | sort -nr | head -n10