Windowsの再帰的なgrepコマンドライン


205

Windowsで再帰的なgrepを実行する必要があります。Unix/ Linuxでは次のようになります。

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

またはより好ましい方法:

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

cmd.exeだけで立ち往生しているので、Windowsの組み込みコマンドしかありません。残念ながら、このサーバーにCygwinUnxUtilsなどのサードパーティツールをインストールできません。PowerShellをインストールできるかどうかさえわかりません。組み込みのcmd.exe(Windows 2003 Server)のみを使用する提案はありますか?


powershellなしでは難しいですが、なぜインストールできないのですか?
Chris Ballance、

システム管理者は、サーバーのアクセス許可をロックダウンしています。誰かがPowerShellの提案を持っている場合は、それらを捨ててください。PowerShellをインストールできるかどうかを確認します。
アンディホワイト

3
ところで、Linuxでは「find。| xargs grep -i string」と書く方がよいことがわかりました。違いは、findが非常に長いリストを返す場合、コマンドの最大長を超えてしまう可能性があり(私にはそれが起こった)、grepをまったく実行できないことです。xargsを使用すると、見つかったファイルごとにgrepが1回呼び出されます。
Nathan Fellman、

Gnu Grepを含むGrepの多くのバージョンでは、組み込みの再帰検索(gnu.org/software/grep/manual/…)が提供されているため、grep -i 'string' -R .@ NathanFellmanが示唆するように、コマンドが長すぎるという問題を回避できます。
Scott Centoni 2015年

回答:


252

findstr 再帰検索(/ S)を実行でき、正規表現構文(/ 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の正規表現のサポートは非​​常に限られています。
John Kaster

3
ため息、Microsoftを信頼して、既存のユーティリティ(find)を修正する代わりに、新しいユーティリティ(findstr)を追加してください。findstrで行数を数えたい場合は、これを使用します-findstr [オプション] | find / c / v ""-行を一致させるにはfindstrを使用し、行を数えるにはfindを使用します。はい、Findは空の文字列に一致する行がないと見なすため、/ vを指定するとすべての行が一致します。
ヨーヨー

3
彼らは、findの壊れた動作に依存する既存のパイプラインを壊したくありませんでした。
i_am_jorf 2013

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'08

4
ええ、一般的に。一部のcmdプログラムでは、/sを緩めることができます。これは一つです。それらのすべてがあなたにそれをさせるわけではありません。cmdは非常に特別です。
i_am_jorf 2011

2
ただし、Windowsの一部として配布されているため、追加のソフトウェアをインストールする必要のないcmd.exeで実行できる元の投稿者の要件を満たしています。
i_am_jorf 2013

26

指定した「検索テキスト」を含むすべてのファイル名をリストする次のコマンドでテキストを検索したところです。

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

13

私は本当に素晴らしいツールをお勧めします:

ネイティブのUNIXユーティリティ:

それらを解凍して、そのフォルダーをPATH環境変数に入れてください。:)

チャームのように動作し、grep以外にも多くの機能があります;)


5
@mPrinC質問には、「残念ながら、このサーバーにCygwinやUnxUtilsのようなサードパーティのツールをインストールすることはできません」と書かれています。
martin jakubik、2011年

7
それはまだ私にとって有用なので賛成です。また、「インストール」は必要ありません。どこかに展開するだけです。
Rosdi Kasim 2014


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 2017

5

Select-String私にとって最も効果的でした。ここに記載されている他のすべてのオプション(など)はfindstr、大きなファイルでは機能しませんでした。

次に例を示します。

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

:これにはPowershellが必要です


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.