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.
|
1
|
|
|
|
|
|
I know you already mentioned it but PowerGREP is awesome. Some of my favorite features are:
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. |
|||
|
|
|
Findstr is fairly powerful, supports RegEx and has the advantages of being on all Windows machines already.
|
||||||||||||
|
|
|
Cygwin includes grep. All the GNU tools amd Unix stuff works great on Windows if you install Cygwin. |
||
|
|
|
|
PowerShell's Select-String cmdlet was fine in v1.0, but is significantly better for v2.0.
|
||
|
|
|
|
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! |
|||
|
|
|
I always use WinGREP, but I've had issues with it not letting go of files. |
||
|
|
|
ack works well on Windows (if you've got Perl). I find it better than grep for many uses. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
PowerShell's select-string is similar, it's not the same options and semantics, but it's still powerful. |
||
|
|
|
|
UnxUtils is the one I use, works perfectly for me... |
||
|
|
|
|
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). |
||
|
|