Search through text files in Mac OS X

69

18

Is there a way to search through all the text files in a folder (and subfolders) for a specific string or bit of text in Mac OS X?

Paul Sheldrake

Posted 2009-11-19T18:51:02.677

Reputation: 3 664

Answers

25

You can't do this from the spotlight icon in the menu bar. But you can do it with spotlight:

  1. Navigate to the folder in the finder.

  2. Type your search in the search bar on the top right of the folder.

  3. There is a line above the results that says:

Search: This Mac "Your Folder Name"

Click on the name of your folder to restrict the search to the folder instead of the whole computer, which is what the default selection "This Mac" does.

Then click the gear icon, choose show search criteria, and change the kind to text files.

ridogi

Posted 2009-11-19T18:51:02.677

Reputation: 2 787

do you need to index your folder first ? – jokoon – 2014-06-28T13:30:08.483

no, as long as the folder is normally indexed by spotlight – ridogi – 2014-06-30T19:41:11.800

5@Aram Did you figure out how to do an "AND"? I'm searching for "My cat mittens" and it's finding everything that has "My" or "cat" or "mittens" and NOT my exact phrase. EDIT - add quotes around it. – 1.21 gigawatts – 2015-11-12T07:04:00.603

1unfortunately this seems to do OR not AND, and some symbols are stripped out of queries I think. – Aram Kocharyan – 2012-04-20T00:50:52.167

93

If you prefer the command line,

grep "my string of text" -R .

You'll need to be (or get) familiar with grep. Read man grep for more info.

retracile

Posted 2009-11-19T18:51:02.677

Reputation: 2 586

2In my .profile I created this helper : function findtext() { grep -ri "$1" . }. I use it like this : findtext toto where I want to start to search. – Maxence – 2015-09-17T15:46:11.153

didnt work so far... – Marcelo Filho – 2017-04-11T12:48:54.790

1downside is it works very slow. grepping in around 50GB of text is painfully slow. – utkarsh dubey – 2017-09-13T03:51:53.920

1what does this mean: grep: warning: recursive search of stdin – SuperUberDuper – 2017-12-09T18:49:02.200

@SuperUberDuper It means you missed the trailing "." (i.e. you didn't specify a directory) – user664303 – 2019-09-05T20:10:47.573

"grepping in around 50GB of text is painfully slow" Narrow down your search. If you're gonna be performing this kind of searches often, you shound't be storing the info in plain text. You should use something else which can indext the content. Like a database. – Lucio Mollinedo – 2019-10-24T16:04:18.983

22

Very powerful and fast

mdfind "text to find"

Description: Mac Dev Centre - The Power of mdfind

user195192

Posted 2009-11-19T18:51:02.677

Reputation: 321

5

In the upper right hand corner of your screen: Spotlight

BBEdit supports great search, too, in files and folders.

markratledge

Posted 2009-11-19T18:51:02.677

Reputation: 405

BBEdit is now TextWrangler and it continues to include excellent multi-file grep search. – Phil – 2015-11-27T17:15:29.007

BBEdit is just BBEdit, TextWrangler is just TextWrangler. BBEdit is a bit more extended than TextWrangler. TextWrangler is free as in free beer. – CousinCocaine – 2016-02-10T17:13:33.173

4

mdfind 'kMDItemTextContent="*text*"c' -onlyin ~/Notes/

c ignores case. See this answer for an overview of the query format and other attributes.

grep -F what? -l -r ~/Notes --include *.txt

-F searches for fixed strings instead of regex. -l only prints the names of the matching files.

Lri

Posted 2009-11-19T18:51:02.677

Reputation: 34 501

Very good one, very fast, very solid. mdfind 'kMDItemTextContent="*text*"c' -onlyin ~/Notes/ – YumYumYum – 2019-09-04T10:49:20.787

2

Open Finder

enter image description here

Navigate to the folder you want to search if you have one.

enter image description here

Enter the term you want to search in the search bar in the upper right hand corner. You may need to stretch out the window to see it.

enter image description here

After you start typing or press enter you'll see a section below the search box to the left that says,

Search: This Mac "Your Folder" Shared

If you want to search your whole computer click on "This Mac". Otherwise click on the folder name next to it. It may already be selected.

enter image description here

To the right side of those options is a "Save" button with a plus sign next to it.

enter image description here

Click the plus sign. You'll see two drop down lists. In the first one select "Kind". In the second choose "Any" or "Text .

enter image description here

Choosing "Any" may find more matches, while "Text" will find files Mac OS X determines fall under the category "Text".

The number of search results will appear at the footer if the footer is shown.

FYI I've noticed that sometimes it takes time to do a search and sometimes there is no indication Finder is doing anything. I wouldn't wait too long but if you're searching a small folder it should be very quick. If searching your Mac it may take up to a minute or more.

Nota bene: To find an exact phrase enclose it in quotes.

1.21 gigawatts

Posted 2009-11-19T18:51:02.677

Reputation: 1 742

1

I'd suggest you look at File Content Finder on the App Store (disclaimer - I'm its developer). It's an affordable app specifically designed for searching file contents without indexing. It supports text files and other major file formats (pdf, doc(x), xls(x), etc).

Its filtering lets you optimise and refine your search by multiple criteria - file type, creation/modification dates, etc.

Here is a detailed documentation on how it works.

Geo Systems

Posted 2009-11-19T18:51:02.677

Reputation: 76

0

For the faster search speed, you can use ag (the silver searcher)

Installation: brew install the_silver_searcher

Usage is alike, just replace the grep to ag

For example,

ag "my string of text" -R .

More information can view on Github.

Asoul

Posted 2009-11-19T18:51:02.677

Reputation: 101