Is there any program available for searching files in Mac OS X with wildcard(GLOB) support? I am looking something similar to SearchEverything in Windows??
quicksilver/spotlight/google quick searchbox/alfred app doesn't solve my problem :(
thanks
You can use mdfind for files that have been indexed by Spotlight. To do wildcards you need use the following format:
mdfind "kMDItemDisplayName=='*back*'c"
You can use this approach as "Raw Queries" in the Finder GUI as well. Example pic below, and see my answer at https://superuser.com/a/491119/66255 for more info.