up vote 53 down vote favorite
27
share [g+] share [fb]

Any recommendations on grep tools for Windows? Ideally ones that could leverage 64-bit OS.

I'm aware of cygwin, of course, and have also found PowerGREP, but I'm wondering if there are any hidden gems out there.

link|improve this question

77% accept rate
feedback

27 Answers

up vote 17 down vote accepted

I know you already mentioned it but PowerGREP is awesome.

Some of my favorite features are:

  • Right-click on a folder to run PowerGREP on it
  • Use Regular Expressions or literal text
  • Specify wildcards for files to include & exclude
  • Search & replace
    • Preview mode is nice because you can make sure you're replacing what you intend to.

Now I realize that the other grep tools can do all of the above. It's just that PowerGREP packages all of the functionality into a very easy-to-use gui.

From the same wonderful folks who brought you RegexBuddy and who I have no affiliation with beyond loving their stuff.

link|improve this answer
Yeah, after evaluating the alternatives, I think I'm sticking with PowerGREP. Will try to post a full analysis in the next couple days, since there doesn't seem to be one online. – Portman Sep 17 '08 at 21:52
49  
This is why I hate Windows. A grep tool is $159. – Wells Nov 3 '10 at 21:43
1  
I'd love to find an open-source grep gui as easy to use & as full featured as PowerGREP but I haven't found one yet :). I do have Cygwin installed and use grep from that quite a bit too. – Mark Biek Nov 4 '10 at 0:09
3  
@Wells - plain old *nix grep on Windows is free via Cygwin or GnuWin32. FindStr and Find are also shipped with Windows. Grep with a great GUI, the ability to replace, and integrated undo, as well as many other features ...yeah... that costs you a little extra. – Mike Clark Nov 19 '10 at 5:37
2  
@Wells, @Mike Clark, @Mark Biek: I suppose it's possible that there weren't nice free GUI grep tools for Windows when this answer was posted, but it's no longer true. grepWin has all the features listed in this answer, and there may be other competitors now as well. – John Y Mar 16 '11 at 20:16
show 4 more comments
feedback

Findstr is fairly powerful, supports RegEx and has the advantages of being on all Windows machines already.

c:\>FindStr /?    
Searches for strings in files.

FINDSTR [/B] [/E] [/L] [/R] [/S] [/I] [/X] [/V] [/N] [/M] [/O] [/P] [/F:file]
        [/C:string] [/G:file] [/D:dir list] [/A:color attributes] [/OFF[LINE]]
        strings [[drive:][path]filename[ ...]]

  /B         Matches pattern if at the beginning of a line.
  /E         Matches pattern if at the end of a line.
  /L         Uses search strings literally.
  /R         Uses search strings as regular expressions.
  /S         Searches for matching files in the current directory and all
             subdirectories.
  /I         Specifies that the search is not to be case-sensitive.
  /X         Prints lines that match exactly.
  /V         Prints only lines that do not contain a match.
  /N         Prints the line number before each line that matches.
  /M         Prints only the filename if a file contains a match.
  /O         Prints character offset before each matching line.
  /P         Skip files with non-printable characters.
  /OFF[LINE] Do not skip files with offline attribute set.
  /A:attr    Specifies color attribute with two hex digits. See "color /?"
  /F:file    Reads file list from the specified file(/ stands for console).
  /C:string  Uses specified string as a literal search string.
  /G:file    Gets search strings from the specified file(/ stands for console).
  /D:dir     Search a semicolon delimited list of directories
  strings    Text to be searched for.
  [drive:][path]filename
             Specifies a file or files to search.

Use spaces to separate multiple search strings unless the argument is prefixed
with /C.  For example, 'FINDSTR "hello there" x.y' searches for "hello" or
"there" in file x.y.  'FINDSTR /C:"hello there" x.y' searches for
"hello there" in file x.y.

Regular expression quick reference:
  .        Wildcard: any character
  *        Repeat: zero or more occurances of previous character or class
  ^        Line position: beginning of line
  $        Line position: end of line
  [class]  Character class: any one character in set
  [^class] Inverse class: any one character not in set
  [x-y]    Range: any characters within the specified range
  \x       Escape: literal use of metacharacter x
  \<xyz    Word position: beginning of word
  xyz\>    Word position: end of word
link|improve this answer
What FINDSTR lacks is an option to display only the count of lines containing the string. (like grep -c) If you need this you can use FIND /C. – Ra. Jun 11 '09 at 6:27
If you want the FINDSTR power back (and your pattern isn't regex), you could always, with some small repetition, chain the two commands together: findstr /s ".ini" *.rlog | find /c ".ini" – Ray Hayes Jun 16 '09 at 7:44
2  
Findstr does not have a fully RegEx support. – mcaaltuntas Jun 29 '09 at 8:36
3  
.. the original post wasn't asking specifically for RegEx! – Ray Hayes Jun 29 '09 at 10:32
As per what I found with GNU Grep, it seems that FindStr doesn't like 10Mb text files either. – Peter M Oct 30 '09 at 15:14
show 1 more comment
feedback

I've been using grepWin which was written by one of the tortoisesvn guys. Does the job on Windows...

http://tools.tortoisesvn.net/grepWin.html

link|improve this answer
And it is free and it is capable of searching in hidden directories/files which PowerGrep is not capable of doing properly... – JVerstry Jun 17 '11 at 15:54
feedback

PowerShell's Select-String cmdlet was fine in v1.0, but is significantly better for v2.0. Having PowerShell built in to recent versions of Windows means your skills here will always useful, without first installing something.

New parameters added to Select-String: Select-String cmdlet now supports new parameters, such as:

  • -Context: This allows you to see lines before and after the match line
  • -AllMatches: which allows you to see all matches in a line (Previously, you could see only the first match in a line)
  • -NotMatch: Equivalent to grep -v o
  • -Encoding: to specify the character encoding

I find it expedient to create an function gcir for Get-ChildItem -Recurse ., with smarts to pass parameters correctly, and an alias ss for Select-String. So you an write:

gcir *.txt | ss foo

link|improve this answer
2  
Example of grep -R equivilant: Get-ChildItem -recurse -include *.txt | Select-String -CaseSenstive "SomeString" – jslatts Mar 11 '11 at 21:48
feedback

alt textGnu Grep is alright

You can download it for example here: (site ftp)

All the usual options are here.

That, combined with gawk and xargs (includes 'find', from GnuWin32), and you can really script like you were on Unix!

link|improve this answer
I just started looking for a replacement for Gnu Grep as the windows version doesn't seem to be able to handle my 10 Mb text files. It just sits there and pretends not to have found anything. If I cut down the file size it starts to work. – Peter M Oct 30 '09 at 15:05
feedback

Baregrep (Baretail is good too)

link|improve this answer
does not work on win7 64 bit ;( – Daniel Magnusson Jan 19 at 12:05
feedback

It may not exactly fall into the 'grep' category, but I couldn't get by on Windows without a utility called AgentRansack. It's a gui-based "find in files" utility with regex support. It's dead simple to right-click on a folder, hit "ransack.." and find files containing what you're looking for. Extremely fast too.

link|improve this answer
feedback

Cygwin includes grep. All the GNU tools amd Unix stuff works great on Windows if you install Cygwin.

http://www.cygwin.com/

link|improve this answer
feedback

ack works well on Windows (if you've got Perl). I find it better than grep for many uses.

link|improve this answer
feedback

Powershell has been mentioned a few times. Here is how you would actually use it in a grepish way:

Get-ChildItem -recurse -include *.txt | Select-String -CaseSensitive "SomeString"

Recursively searches all text files in the current directory tree for SomeString with case sensitivity.

Even better, run this:

function pgrep { param([string]$search, [string]$inc) Get-ChildItem -recurse -include $inc | Select-String -CaseSensitive $search }

Then do:

pgrep SomeStringToSearch *.txt

Then to really make it magical, add the function alias to your PowerShell Profile and you can almost dull the pain of not having proper command line tools.

link|improve this answer
feedback

It's been a couple of years since you asked the question, but I'd recommend AstroGrep (http://astrogrep.sourceforge.net).

It's free, open source, and has a simple interface. I use it to search code all the time.

link|improve this answer
Thanks for this excellent wee tool, loving it. – KevO Dec 8 '11 at 13:57
feedback

I always use WinGREP, but I've had issues with it not letting go of files.

link|improve this answer
1  
I've used wingrep for several years, it's great with the exception that the directory select boxes are far too small – Cruachan Jun 10 '09 at 10:15
GUI is too much win 3.11 ;( – Daniel Magnusson Jan 19 at 12:11
feedback

Well, beside the Windows port of the GNU grep at:

http://gnuwin32.sourceforge.net/

there's also Borland's grep (very similar to GNU one) available in the freeware Borland's Free C++ Compiler (it's a freeware with command line tools).

link|improve this answer
feedback

I have successfully used GNU utilities for Win32 for quite some time and it has a good grep as well as tail and other handy gnu utils for win32. I avoid the packaged shell and simply use the executables right in win32 command prompt.

The Tail that is packaged is quite a good little application as well.

link|improve this answer
feedback

UnxUtils is the one I use, works perfectly for me...

link|improve this answer
feedback

dnGREP is an open source grep tool for windows. It supports a number of cool features including:

  • Undo for replace
  • Ability to search by right clicking on folder in explorer
  • Advance search options such as phonetic search and xpath
  • Search inside PDFs, archives, and Word documents

IMHO it has a nice and clean interface too :)

link|improve this answer
feedback

I wanted a free grep tool for Windows that allowed you to right click on a folder and do a regex search of every file - without any nag screen.

The following is a quick solution based on the findstr mentioned in a previous post.

Create a text file somewhere on your hard drive where you keep long lived tools. Rename to .bat or .cmd and paste the following into it:

@echo off
set /p term="Search term> "
del %temp%\grepresult.txt
findstr /i /S /R /n /C:"%term%" "%~1\*.*" > "%temp%\grepresult.txt"
start notepad "%temp%\grepresult.txt"

Then browse to the SendTo folder. On Windows 7 browse to %APPDATA%\Microsoft\Windows\SendTo and drag a shortcut of the batch file to that SendTo folder.

I renamed the shortcut to 1 GREP to keep it at the top of the SendTo list.

Things that I'd like to do next with this is pipe the output of findstr through something that would generate an html file so that you could click on each output line to open that file. Also, I don't think it works with shortcuts to folders. I'd have to inspect the parameter and see if it contains ".lnk".

link|improve this answer
feedback

PowerShell's select-string is similar, it's not the same options and semantics, but it's still powerful.

link|improve this answer
feedback

I'm the author of Aba Search and Replace. Just like PowerGREP, it supports regular expressions, saving patterns for further use, undo for replacements, preview with syntax highlight for HTML/CSS/JS/PHP, different encodings, including UTF-8 and UTF-16.

In comparison with PowerGREP, the GUI is less cluttered. Aba instantly starts searching as you are typing the pattern (incremental search), so you can experiment with regular expressions and immediately see the results.

You are welcomed to try my tool; I will be happy to answer any questions.

link|improve this answer
feedback

I used Borland's grep for years but just found a pattern that it won't match. Eeeks. What else hasn't it found over the years? I wrote a simple text search replacement that does recursion like grep - it's FS.EXE on source forge.

grep fails...

C:\DEV>GREP GAAPRNTR \SOURCE\TPALIB\*.PRG
<no results>

windows findstr works...

C:\DEV>FINDSTR GAAPRNTR \SOURCE\TPALIB\*.PRG
\SOURCE\TPALIB\TPGAAUPD.PRG:ffSPOOL(cRPTFILE, MEM->GAAPRNTR, MEM->NETTYPE)
\SOURCE\TPALIB\TPPRINTR.PRG:    AADD(mPRINTER,   TPACONFG->GAAPRNTR)
\SOURCE\TPALIB\TPPRINTR.PRG:               IF TRIM(TPACONFG->GAAPRNTR) <> TRIM(mPRINTER[2])
\SOURCE\TPALIB\TPPRINTR.PRG:                   REPLACE TPACONFG->GAAPRNTR WITH mPRINTER[2]
link|improve this answer
feedback

If you want a simple to use Windows Grep tool, I created one called P-Grep that I have made available for free download from my website: www.adjutantit.com - home menu, downloads.

Windows Grep seemed to have problems with a large number of files, so I wrote my own - which seems more reliable. You can select a folder, right click and send it to P-Grep. The sendto folder gets unpdated during installation.

link|improve this answer
feedback

Another good choice is MSYS. It gives you a bunch of other GNU utilities to allow you to be more productive.

link|improve this answer
feedback

I have cygwin installed on my machine and put the Cygwin bin directory in my environmental path, so the cygwin grep works like normal in a command line which solves all my scripting needs for grep atm.

link|improve this answer
feedback

My tool of choice is the appropriately named Windows Grep:

  • nice simple GUI
  • supports search and replace
  • can show the lines around the lines found
  • can search within columns in CSVs and fixed-width files
link|improve this answer
feedback

I've been using AJC Grep daily for years. The only major limitation I've found is that file paths are limited to 255 characters and it stops when it encounters one, rather than just issuing a warning. It's annoying but doesn't happen very often.

I use it on 64-bit Windows 7 Ultimate, so its 64-bit credentials are fine.

link|improve this answer
feedback

GREP for Windows

I've been using it forever and luckily it's still available. It's super fast and very small.

link|improve this answer
Is there even a GUI? I just use it from the command line so I never realized. – bbrown Jan 19 at 22:29
hum, i posted comment on wrong post ;) – Daniel Magnusson Jan 20 at 8:24
feedback

GIT windows = grep in cmd.exe

I just found out the installing git will give you some basic linux cmds.

cat grep scp all other good ones.

install then add git bin folder to your PATH and then your cmd.exe has basic linux functionality!

http://code.google.com/p/msysgit/downloads/list?can=3

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.