Is there a similar utility to grep available from the Windows Command Prompt, or there is third party tool for it?

link|improve this question

64% accept rate
feedback

21 Answers

up vote 25 down vote accepted

Have fun

link|improve this answer
This is the GnuWin32 grep. It hasn't been updated to the newest version of grep. For that you'll have to get the Cygwin version. See comment below. – JPaget Dec 6 '11 at 19:14
feedback

PowerShell (included as standard on Windows 7/2008R2, optional for XP/2003/Vista/2008) which includes the select-string cmdlet for this purpose.

link|improve this answer
1  
While Select-String (alias:sls) uses regular expressions it doesn't support some basic features like directory recursion. For that you need to combine multiple PowerShell commands. Like "dir -R -Include *.txt | sls "^My Regex String$" – yzorg Feb 9 '11 at 19:15
feedback

There is a command-line tool called FINDSTR that comes with all Windows NT-class operating systems (type FINDSTR /? into a Command Prompt window for more information) It doesn't support everything grep does but it might be sufficient for your needs.

link|improve this answer
Thanks! It's not grep, but I like to be able to function without installing additional software on other people's machines and this will let me. – sage Feb 14 '11 at 23:21
feedback

Cygwin grep and more ;)

link|improve this answer
You don't have to install the entire Cygwin package to run Cygwin grep. You just need about 5 DLL's:cygpcre-0.dll, cygpcreposix-0.dll, cygwin1.dll, cygintl-8.dll, and cyggce_s-1.dll. – JPaget Dec 6 '11 at 19:10
feedback

Windows Grep

link|improve this answer
Great tool! Only short fall is the annoyingly small directory browser. – Michael Baker Sep 12 '09 at 23:18
1  
That's not open-source or even free ... – Diaa Sami Sep 13 '09 at 2:20
1  
was free last time I checked – LRE Sep 13 '09 at 20:20
3  
also, where in the question is "Open Source" or "Free" a requirement – LRE Sep 13 '09 at 20:21
It may not be open source, but it is essentially free, from their download page: "A fully-functioning evaluation version is available for download. There are no differences between this and the registered version. It does not time-expire." – GreenMatt Feb 4 '10 at 16:27
show 1 more comment
feedback

GnuWin32 is worth mentioning, it provides native Win32 version of all standard linux tools, including grep, file, sed, groff, indent, etc.

And it's constantly updated when new versions of these tools are released.

link|improve this answer
feedback

UnxUtils is a great set of Unix utilites that run on Windows. It has grep, sed, gawk, etc.

link|improve this answer
UnxUtils hasn't been maintained for years. Use GnuWin32 or Cygwin instead. – JPaget Dec 6 '11 at 19:20
feedback

I'm surprised no one has mentioned FINDSTR. I'm no grep poweruser, but findstr does what I need it to, filter files and stdin, with some primitive regex support. Ships with Windows and all that. (Edit: Well someone did mention findstr, It's late I guess)

link|improve this answer
feedback

In the windows reskit there is a utility called "qgrep". You may have it on your box already. ;-) It also comes with the "tail" command, thank god!

link|improve this answer
feedback

An excellent and very fast file search utility, Agent Ransack, supports regular expression searching. It's primarily a GUI utility, but a command-line interface is also available.

link|improve this answer
feedback

If you install either Cygwin or Mingw, then yes.

Otherwise, not as far as I know.

link|improve this answer
feedback

Bare Grep is nice if you want a GUI. Gnu grep is good for CLI

link|improve this answer
feedback

If you don't mind a paid-for product, PowerGREP is my personal favorite.

link|improve this answer
feedback

We have recently used PowerGREP for some fairly advanced bulk operations on thousands of files. Including regex searching in content of PDF files, and altering PDF documents in largescale.

Its worth the money if you want to save time from manuel labour. You can try it before you buy i think.

link|improve this answer
feedback

If you have to use bare Windows, then in addition to the Powershell option noted above, you can use VBScript, which has decent RegEx support.

MS also has a decent scripting area on Technet with a ton of examples for administrators.

link|improve this answer
feedback

Although not technically grep nor command line, both Microsoft Visual Studio and Notepad++ have a very good Find in Files feature with full regular expression support. I find myself using them frequently even though I also have the CygWin version of grep available on the command line.

link|improve this answer
feedback

Just try LikeGrep java utility. It may help you in very many cases. As you wish, it can also replace some text, found in files. It garantees its work on large files (up-to 8 Gb tested)

link|improve this answer
feedback

As mentioned above, the gnuwin32 project has a Windows CLI version of grep.

If you want something with a graphical interface, I would recommend the (open-source) tool AstroGrep.

link|improve this answer
feedback

It has been a while since I've used them, but Borland (Embarcadero now) included a command line grep with their C/C++ compiler. For some time, they have made available their 5.5 version as a free download after registering.

link|improve this answer
feedback

I'll add my $0.02 to this thread. dnGREP is a great open source grep tool for windows that supports undo, windows explorer integration, search inside PDFs, zips, DOCs and bunch of other stuff...

link|improve this answer
feedback

There's a commercial grep utility available from Oak Road Systems.

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.