man find for more options.
/bin/find <starting path> [options]
2> /dev/null to the end of the command to redirect standard error to /dev/null
find ~ -mtime 0
find ~ -mtime +365 -ls
find / -type f -name core -exec rm {} \;
{} \;
find / -type d -name ssh\*
find / -type f -name \*.htm\* -exec grep -il red {} \;