Is there a similar utility to grep available from the Windows Command Prompt, or there is third party tool for it?
|
1
|
|
|
|
|
|
|
||
|
|
|
|
If you install either Cygwin or Mingw, then yes. Otherwise, not as far as I know. |
||
|
|
|
|
There is a command-line tool called |
||
|
|
|
|
PowerShell (included as standard on Windows 7/2008R2, optional for XP/2003/Vista/2008) which includes the |
|||
|
|
|
|
UnxUtils is a great set of Unix utilites that run on Windows. It has grep, sed, gawk, etc. |
||
|
|
|
|
If you don't mind a paid-for product, PowerGREP is my personal favorite. |
||
|
|
|
|
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. |
||
|
|
|
|
Cygwin grep and more ;) |
||
|
|
|
|
|
||||||||
|
|
|
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. |
||
|
|
|
|
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) |
|||
|
|
|
|
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. |
||
|
|
|
|
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! |
||
|
|
|
|
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. |
||
|
|
