Windowsのfindコマンドとfindstrコマンドの違いは何ですか?


24

Windowsでは、コマンドfindfindstrコマンドの違いは何ですか?

どちらもファイル内のテキストを検索するようです:

見つける

C:\> find /?
Searches for a text string in a file or files.

FIND [/V] [/C] [/N] [/I] [/OFF[LINE]] "string" [[drive:][path]filename[ ...]]

  /V         Displays all lines NOT containing the specified string.
  /C         Displays only the count of lines containing the string.
  /N         Displays line numbers with the displayed lines.
  /I         Ignores the case of characters when searching for the string.
  /OFF[LINE] Do not skip files with offline attribute set.
  "string"   Specifies the text string to find.
  [drive:][path]filename
             Specifies a file or files to search.

If a path is not specified, FIND searches the text typed at the prompt
or piped from another command.

findstr

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 occurences 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.

1
おそらく進化に関するものです。FindはDOS / UNIX時代に戻り、後にFINDSTRがWindowsに追加されました。どちらもおそらく進化しており、より似たものになっています。
-KCotreau

@KCotreauのタイムラインに同意します。FINDは古いもので、FINDSTRは新しいものです。FINDがFINDSTRに似たものに進化したとは思えません。むしろ、FINDは、(DOSが一般的にそうであったように)後方互換性を維持するために(たとえば、それを使用するバッチファイルと)障害のある恐竜として保存され、FINDSTRはまともな機能セットを提供するために追加されたと思います。
スコット

1
ああ、ところで、DOS / WindowsのFINDコマンドはUnix findコマンドのようなものではありません。むしろ、パラドロイドが以下に示唆するように、FINDはgrep(またはおそらくfgrep)骨抜きバージョンのようなものです。
スコット

ヘルプの違いが見えませんか?
phuclv

回答:


17

上に示したように、findstr正規表現のサポートを追加しているので、より似ていgrepます。


3
ただし、これらの両方を頻繁に使用していない場合、正確な使用法と違いを常に明確にすることはできません。あなたが彼らとはかなり異なる経験をしたので、彼らの認識は異なるかもしれません。学習とキャリアにおける大きな問題の一部は、エクスペリエンスギャップと呼ばれます。長い話。
crosenblum

5

Findstrにはさらに多くの検索オプションがあり、正規表現をサポートしています。ファイル名にワイルドカードを使用すると、findstrが機能しないことがわかりました。

以下のコマンドは、パターンQuant_2013-10-25 _ *。logで複数のファイル内の検索文字列のすべての出現を返します。

find /I "nFCT255c9A" D:\Comp1\Logs\Quant_2013-10-25_*.log 

次のコマンドは何も返さないか、単に機能しません

findstr nFCT255c9A D:\Comp1\Logs\Quantum_2013-10-25_*.log

findまた、いくつかの制限があります。たとえば、find/n""何も一致しないため、これを使用して各行に行番号を追加することはできません。そのためにはを使用する必要がありますfindstr
パセリエ

1
でワイルドカードの問題を再現できませんfindstrMicrosoft Windows 7 Professional, 6.1.7601 Service Pack 1 Build 7601
ロードチート


1

findstrは、findの機能をいくつかの便利な機能で拡張します。キーの追加には次のものがあります。

  1. findstrは複数の検索文字列をサポートします
  2. findstrは、検索するファイル名またはディレクトリを含むファイルを入力として取得できます
  3. findstrは正規表現をサポートしています

どちらの機能も、大きなファイルや大量のファイルには適していません。


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