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.
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
Based on recommendations in the comments, I've started using grepWin and it's fantastic and free.(I'm still a fan of PowerGREP but I don't use it anymore.) 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.
|
|||||||||||||||||
|
|
I've been using grepWin which was written by one of the tortoisesvn guys. Does the job on Windows... |
|||||||
|
|
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.
I find it expedient to create an function
|
|||||||||||||
|
|
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. |
|||||
|
|
|
|||||||||
|
|
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! See also the options I am using to grep recursively:
|
|||||||||
|
|
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. |
|||
|
|
|
ack works well on Windows (if you've got Perl). I find it better than grep for many uses. |
|||
|
|
|
Cygwin includes grep. All the GNU tools amd Unix stuff works great on Windows if you install Cygwin. |
|||
|
|
|
Powershell has been mentioned a few times. Here is how you would actually use it in a grepish way:
Recursively searches all text files in the current directory tree for SomeString with case sensitivity. Even better, run this:
Then do:
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. |
|||
|
|
|
I always use WinGREP, but I've had issues with it not letting go of files. |
|||||||||
|
|
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). |
|||
|
|
|
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. |
|||
|
|
|
dnGREP is an open source grep tool for windows. It supports a number of cool features including:
IMHO it has a nice and clean interface too :) |
|||
|
|
|
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 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:
Then browse to the SendTo folder. On Windows 7 browse to I renamed the shortcut to Things that I'd like to do next with this is pipe the output of |
||||
|
|
|
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...
windows findstr works...
|
||||
|
|
|
Another good choice is MSYS. It gives you a bunch of other GNU utilities to allow you to be more productive. |
|||
|
|
|
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. |
|||
|
|
|
PowerShell's select-string is similar, it's not the same options and semantics, but it's still powerful. |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
My tool of choice is the appropriately named Windows Grep:
|
|||
|
|
|
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. |
|||
|
|
|
I've been using it forever and luckily it's still available. It's super fast and very small. |
|||||
|
|
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! |
|||
|
|
|
If none of the solulutions is quite what you are looking for, perhaps you could write a wrapper to FindStr that does exactly what you require? FindStr is pretty good anyway so it should just be knocking a GUI up (if you want it) and providing a few extra features (like combining it with Find to find the count of files which contain a specified string [mentioned above]). This, of course, assumes you have the requirement, time and inclination to do this! |
|||
|
|