Possible Duplicate:
How can I find a file whose name includes a given string, such as “abcde”?
How to find files in terminal that contains the string "foo"?
I tried the following but doesn't work.
find *foo*.* // any character before or after "foo" of any extension.
I tried googling UNIX or bash wild card but doesn't provide me any useful result.
find . -name '*foo*'– ire_and_curses Sep 19 '12 at 9:09