有关Windows的grep工具的任何建议?理想情况下可以利用64位操作系统.
我当然知道Cygwin,并且也找到了PowerGREP,但我想知道那里是否有隐藏的宝石?
FINDSTR相当强大,支持正则表达式,并且具有已经在所有Windows机器上的优点.
c:\> FindStr /? Searches for strings in files. FINDSTR [/B] [/E] [/L] [/R] [/S] [/I] [/X] [/V] [/N] [/M] [/O] [/P] [/F:file] [/C:string] [/G:file] [/D:dir list] [/A:color attributes] [/OFF[LINE]] strings [[drive:][path]filename[ ...]] /B Matches pattern if at the beginning of a line. /E Matches pattern if at the end of a line. /L Uses search strings literally. /R Uses search strings as regular expressions. /S Searches for matching files in the current directory and all subdirectories. /I Specifies that the search is not to be case-sensitive. /X Prints lines that match exactly. /V Prints only lines that do not contain a match. /N Prints the line number before each line that matches. /M Prints only the filename if a file contains a match. /O Prints character offset before each matching line. /P Skip files with non-printable characters. /OFF[LINE] Do not skip files with offline attribute set. /A:attr Specifies color attribute with two hex digits. See "color /?" /F:file Reads file list from the specified file(/ stands for console). /C:string Uses specified string as a literal search string. /G:file Gets search strings from the specified file(/ stands for console). /D:dir Search a semicolon delimited list of directories strings Text to be searched for. [drive:][path]filename Specifies a file or files to search. Use spaces to separate multiple search strings unless the argument is prefixed with /C. For example, 'FINDSTR "hello there" x.y' searches for "hello" or "there" in file x.y. 'FINDSTR /C:"hello there" x.y' searches for "hello there" in file x.y. Regular expression quick reference: . Wildcard: any character * Repeat: zero or more occurances of previous character or class ^ Line position: beginning of line $ Line position: end of line [class] Character class: any one character in set [^class] Inverse class: any one character not in set [x-y] Range: any characters within the specified range \x Escape: literal use of metacharacter x \Word position: end of word
用法示例:findstr text_to_find *
或以递归方式搜索findstr /s text_to_find *
(我仍然是PowerGREP的粉丝,但我不再使用它了.)
我知道你已经提到过了,但是PowerGREP 太棒了.
我最喜欢的一些功能是:
右键单击文件夹以在其上运行PowerGREP
使用正则表达式或文字文本
为要包含和排除的文件指定通配符
搜索和替换
预览模式很不错,因为你可以确保你正在替换你想要的东西.
现在我意识到其他grep工具可以完成上述所有工作.只是PowerGREP将所有功能打包成一个非常易于使用的GUI.
来自同样精彩的人们给你带来了RegexBuddy以及我与他们没有任何关系而超越了他们的东西.(应该注意的是,RegexBuddy包含grep的基本版本(适用于Windows)本身,它的成本远低于PowerGREP.)
FINDSTR
PowerShell中的Select-String
Cygwin的
现金
AstroGrep
BareGrep
GrepWin
dnGrep
GrepWin免费开源(GPL)
我一直在使用grepWin,这是由一个tortoisesvn家伙写的.Windows上的工作是......
http://stefanstools.sourceforge.net/grepWin.html
2013年7月更新:
我现在在Windows上一直使用的另一个grep工具是AstroGrep:
它能够向我展示的不仅仅是行搜索(即--context =命令行grep的NUM)是非常宝贵的.
它很快.非常快,即使在使用非SSD驱动器的旧计算机上(我知道,他们曾经使用旋转磁盘做这个硬盘,称为盘片,疯狂吧?)
这是免费的.
它是便携式的(解压缩的简单zip存档).
原始答案2008年10月
Gnu Grep没事
你可以在这里下载它:( 站点ftp)
所有常见的选择都在这里.
结合gawk和xargs(包括'find',来自GnuWin32),你可以像在Unix上一样编写脚本!
另请参阅我用于递归grep的选项:
grep --include "*.xxx" -nRHI "my Text to grep" *
PowerShell的Select-String cmdlet在v1.0中运行良好,但对于v2.0则明显更好.将PowerShell内置到最新版本的Windows中意味着您的技能始终有用,无需先安装.
添加到Select-String的新参数:Select-String cmdlet现在支持新参数,例如:
-Context:这允许您查看匹配行之前和之后的行
-AllMatches:允许您查看一行中的所有匹配项(以前,您只能看到一行中的第一个匹配项)
-NotMatch:相当于grep -vo
-Encoding:指定字符编码
我觉得适宜创建一个功能gcir
为Get-ChildItem -Recurse .
,以智慧来正确地传递参数,以及别名ss
为Select-String
.所以你写一下:
gcir*.txt | ss foo
它可能不完全属于'grep'类别,但如果没有名为AgentRansack的实用程序,我无法在Windows上使用它.它是一个基于gui的"在文件中查找"实用程序,具有正则表达式支持.右键单击文件夹,点击"搜索..."并查找包含您要查找的内容的文件非常简单.非常快.
Baregrep(Baretail也很好)
你问这个问题已经有几年了,但我推荐AstroGrep(http://astrogrep.sourceforge.net).
它是免费的,开源的,并且具有简单的界面.我一直用它来搜索代码.
PowerShell已被提及几次.以下是如何以实际的方式使用它:
Get-ChildItem -recurse -include *.txt | Select-String -CaseSensitive "SomeString"
它递归搜索当前目录树中的所有文本文件SomeString
以区分大小写.
更好的是,运行这个:
function pgrep { param([string]$search, [string]$inc) Get-ChildItem -recurse -include $inc | Select-String -CaseSensitive $search }
然后做:
pgrep SomeStringToSearch *.txt
然后要真正使它变得神奇,将功能别名添加到PowerShell配置文件中,您几乎可以消除没有正确命令行工具的痛苦.
ack在Windows上运行良好(如果你有Perl).对于许多用途我发现它比grep更好.
Cygwin包括grep.如果安装Cygwin,所有GNU工具和Unix的东西在Windows上运行良好.
http://www.cygwin.com/
Git on Windows = grep in cmd.exe
我刚刚发现安装Git会给你一些基本的Linux命令:cat,grep,scp和所有其他好的命令.
安装然后将Git bin文件夹添加到PATH,然后您的cmd.exe具有基本的Linux功能!
http://code.google.com/p/msysgit/downloads/list?can=3
dnGREP是Windows的开源grep工具.它支持许多很酷的功能,包括:
撤消替换
能够通过右键单击资源管理器中的文件夹进行搜索
提前搜索选项,如语音搜索和xpath
在PDF文件,档案和Word文档中搜索
恕我直言,它有一个漂亮和干净的界面:)
我总是使用WinGREP,但我遇到了问题,不放弃文件.
那么,在GNU grep的Windows端口旁边:
http://gnuwin32.sourceforge.net/
Borland的免费C++编译器(它是一个带命令行工具的免费软件)中也有Borland的grep(非常类似于GNU).
我已经成功地为Win32使用了GNU实用程序很长一段时间,它有一个很好的grep以及tail和win32的其他方便的gnu工具.我避免使用打包的shell,只需在win32命令提示符下使用可执行文件即可.
打包的Tail也是一个非常好的小应用程序.
我是Aba Search and Replace的作者.就像PowerGREP一样,它支持正则表达式,保存模式以供进一步使用,撤消替换,使用HTML/CSS/JS/PHP的语法高亮预览,不同的编码,包括UTF-8和UTF-16.
与PowerGREP相比,GUI 不那么混乱.当您输入模式(增量搜索)时, Aba立即开始搜索,因此您可以尝试使用正则表达式并立即查看结果.
欢迎您试用我的工具; 我很乐意回答任何问题.