2

grep を使用して、2 つの異なるファイル内のファイルから一致する行を見つけました。とから一致するファイルをうまく見つけますFile1が、複数のファイルがある瞬間から、それが見つかったファイル名を行の横に出力します。File2File3

grep -w -f File1 File2 File3

出力:

File2: pattern

File2: pattern

File3: pattern

と の出力を避けるオプションはありますFile2:File3:?

4

2 に答える 2

5
grep --no-filename -w -f File1 File2 File3
于 2013-06-19T19:23:11.223 に答える
2

UNIX システムを使用している場合は、man ページを参照してください。問題が発生した場合、最初のステップはman $programName. この場合、man grep. 「-h」オプションが必要なようです。マニュアルページからの抜粋は次のとおりです。

   -h, --no-filename
          Suppress the prefixing of file names on output.  This is the default when there is only one file (or only standard input) to search.
于 2013-06-19T19:24:20.567 に答える