Recursively list the most recently changed files on the command line

Here's a command line tip courtesy of snippets.dzone.com to recursively list the recently changed files starting in the current directory. Handy if your site ever gets hacked and you're not sure exactly where the perpetrator has managed to inject his code:

find . -type f -printf '%TY-%Tm-%Td %TT %p\n' | sort