Computer Tips - Using the find command, how get I get the files what where changed today?

Date: 2008mar17 Level: Beginner OS: Linux Q. Using the find command, how get I get the files what where changed today? A. This is what you want:
find . -type f -mtime 0 -print
The "-print" isn't necessary.