Windows递归grep命令行


204

我需要在Windows中做一个递归grep,在Unix / Linux中是这样的:

grep -i 'string' `find . -print`

或更优选的方法:

find . -print | xargs grep -i 'string'

我只使用cmd.exe,所以只有Windows内置命令。不幸的是,我无法在该服务器上安装Cygwin或任何第三方工具,例如UnxUtils。我什至不确定我是否可以安装PowerShell。仅使用cmd.exe内置插件(Windows 2003 Server)有什么建议吗?


没有powershell很难做到,为什么不能安装?
克里斯·巴伦斯

系统管理员正在锁定我们服务器上的权限。如果有人有任何Powershell建议,请将其丢弃,我将看看是否可以安装PowerShell。
安迪·怀特2009年

3
顺便说一句,我发现在linux中最好写:“ find。| xargs grep -i string”。区别在于,如果find返回一个很长的列表,则您可能超过了最大命令长度(这是我的事),并且您将根本无法执行grep。使用xargs grep时,每个找到的文件都会调用一次。
内森·费尔曼

Grep的许多版本,包括Gnu Grep,都提供内置的递归搜索(gnu.org/software/grep/manual/…),因此您的搜索可以这样编写grep -i 'string' -R .,就像@NathanFellman建议的那样,可以避免出现过长的命令问题。
Scott Centoni 2015年

Answers:


251

findstr 可以进行递归搜索(/ S),并支持regex语法(/ R)的某些变体。

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 occurrences 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
  \<xyz    Word position: beginning of word
  xyz\>    Word position: end of word

For full information on FINDSTR regular expressions refer to the online Command
Reference.

45
findstr是grep的绝佳替代品。我倾向于使用findstr / sinp(递归,不区分大小写,跳过二进制文件并显示行号)
Steve Rowe

5
不幸的是,根据我尝试使用的文档和模式,findstr对正则表达式的支持非常有限。
约翰·卡斯特

3
igh,请相信Microsoft添加新实用程序(findstr)而不是修复现有实用程序(find)。如果您希望findstr可以计算行数,则可以使用它-findstr [options] | find / c / v“”-使用findstr匹配行并查找计数。是的,find认为没有行与空字符串匹配,因此对于/ v,每行都将匹配。
yoyo 2012年

3
他们不想破坏依赖于find的破坏行为的现有管道。
i_am_jorf

134
findstr /spin /c:"string" [files]

参数含义如下:

  • s =递归
  • p =跳过不可打印的字符
  • i =不区分大小写
  • n =打印行号

搜索的字符串是您在引号后加上 /c:


2
抱歉。您能添加一个例子吗?什么spin啊 是要查找的文字行吗?/ g或/ f不能用于指定文件吗?那么方括号是什么呢?
Wolfpack'08

5
findstr /?解释每个参数。s =递归,p =跳过不可打印的字符,i =不区分大小写,n =打印行号。您不一定需要所有这些,但是我喜欢它们,并且spin容易记住。要搜索的字符串是您在后面加引号的位置/c:
i_am_jorf 2011年

3
哦哈哈 我做了一个/?,但实际上我不知道修饰符的用法像/spin。我以为他们是用像/s/p/i/n
Wolfpack'11年8

4
是的,一般。某些cmd程序可让您懈怠/。这是一。并非所有人都允许您这样做。您知道,cmd非常特别。
i_am_jorf 2011年

2
但是,它作为Windows的一部分分发,因此满足了cmd.exe可以完成的原始发布者要求,而无需安装任何其他软件。
i_am_jorf

26

我只是使用以下命令搜索了文本,该命令列出了所有包含我指定的“搜索文本”的文件名。

C:\Users\ak47\Desktop\trunk>findstr /S /I /M /C:"search text" *.*

13

我推荐一个非常好的工具:

原生Unix实用程序:

只需解压缩它们,然后将该文件夹放入您的PATH环境变量中,瞧!:)

就像魅力一样工作,而grep则不止这些;)


5
@mPrinC这个问题说“很遗憾,我无法在该服务器上安装Cygwin或诸如UnxUtils之类的任何第三方工具”。
马丁·雅各比克,2011年

7
已投票,因为它对我仍然有用。另外,它不需要“安装”,只需将其解压缩到某个位置即可。
Rosdi Kasim 2014年

12

递归搜索文件夹中的import单词src

> findstr /s import .\src\*

9
for /f %G in ('dir *.cpp *.h /s/b') do  ( find /i "what you search"  "%G") >> out_file.txt

这看起来类似于这里的答案serverfault.com/a/506615,但是我喜欢将答案通过管道传输到文件的事实。容易食用。
jinglesthula

仅供参考,使用findstr,您会在命令行上获得突出显示的文件名,而没有在文本文件中获得文件名(显然)。因此,文本文件不是更有用的格式并不确定。
Martin Greenaway

5

Select-String最适合我 此处列出的所有其他选项(例如)findstr不适用于大文件。

这是一个例子:

select-string -pattern "<pattern>" -path "<path>"

注意:这需要Powershell


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.