Using find with grep, one can locate files that match a pattern:
# find | grep error
./solr-modifiedSolr4/SolrPhpClient/phpdocs/errors.html
./error_log
./includes/classes/error_log
However, using find alone the first file is not found:
# find . -name error*
./error_log
./includes/classes/error_log
Why doesn't find locate the errors.html file when not used with grep? How is find used to show this file as well?