vote up 7 vote down star
1

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

flag

43% accept rate

15 Answers

vote up 13 vote down check

Have fun

link|flag
vote up 0 vote down

If you install either Cygwin or Mingw, then yes.

Otherwise, not as far as I know.

link|flag
vote up 7 vote down

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|flag
vote up 9 vote down

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

link|flag
vote up 2 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 3 vote down

Cygwin grep and more ;)

link|flag
vote up 0 vote down

Windows Grep

link|flag
Great tool! Only short fall is the annoyingly small directory browser. – Michael Baker Sep 12 at 23:18
That's not open-source or even free ... – Diaa Sami Sep 13 at 2:20
was free last time I checked – LRE Sep 13 at 20:20
also, where in the question is "Open Source" or "Free" a requirement – LRE Sep 13 at 20:21
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 2 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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