2

以下のこのコマンドを使用して、文字列を含むすべてのファイルを検索していますが、ファイルだけでなく、文字列が含まれている行も表示されます..

rgrep "foobar" .

ファイルの名前 (パスを含む) のみを表示するにはどうすればよいですか?

4

1 に答える 1

3

-l オプションが必要です

grep の man ページから:

-l, --files-with-matches
          Suppress  normal  output;  instead  print the name of each input file from which output would normally have been printed.  The scanning will stop on the
          first match.  (-l is specified by POSIX.)
于 2012-09-26T11:56:57.183 に答える