I need to recursively search my filesystem using a 'grep' or 'find' command to match any filename that contains the string "report".
I attempted the command
find | grep "report[[:alnum:]]\."
and while this was close to the output I wanted, it only gave files that END in 'report.(php/tpl/whatever)'
What is wrong with this command, or what can I use to produce the desired output?