File search application for mac os x with wildcard support

6.5k views Asked by At

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

4

There are 4 answers

0
studgeek On BEST ANSWER

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.

Raw Query Example

1
Brandon Frohbieter On
2
Ned Deily On

Besides find, depending on what you are trying to do you might find the OS X mdfind command useful. It's a command line interface to the metadata-store used by Spotlight.

0
jerdiggity On

When you open the finder, instead of searching in the little box, hit Command+F. This will bring up more options to choose from:

Searching for files whose type is gz, and whose name contains both 19 and 223

There are also more options that are hidden by default. Under the "name/kind" list is the option for "other". This will present you with even more stuff to choose from:

Additional options

Almost kind of overwhelming at how many hidden options there are, and I believe it changes depending on which programs you have installed. BUT, better than the (GUI) alternative I suppose...

Hop that helps...